diff --git a/docs/docs/setup/azure-container.md b/docs/docs/setup/azure-container.md index df43737ac2..b4dca950e7 100644 --- a/docs/docs/setup/azure-container.md +++ b/docs/docs/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -41,7 +41,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/docs/setup/try-tooljet.md b/docs/docs/setup/try-tooljet.md index 8426d50168..6cbf605912 100644 --- a/docs/docs/setup/try-tooljet.md +++ b/docs/docs/setup/try-tooljet.md @@ -28,4 +28,21 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. diff --git a/docs/static/img/setup/azure-container/step3-v2.png b/docs/static/img/setup/azure-container/step3-v2.png new file mode 100644 index 0000000000..c4dc9f38a1 Binary files /dev/null and b/docs/static/img/setup/azure-container/step3-v2.png differ diff --git a/docs/static/img/setup/azure-container/step4-v2.png b/docs/static/img/setup/azure-container/step4-v2.png new file mode 100644 index 0000000000..8873d8d91b Binary files /dev/null and b/docs/static/img/setup/azure-container/step4-v2.png differ diff --git a/docs/static/img/setup/azure-container/step5a-v2.png b/docs/static/img/setup/azure-container/step5a-v2.png new file mode 100644 index 0000000000..74a30c1213 Binary files /dev/null and b/docs/static/img/setup/azure-container/step5a-v2.png differ diff --git a/docs/versioned_docs/version-1.x.x/setup/azure-container.md b/docs/versioned_docs/version-1.x.x/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-1.x.x/setup/azure-container.md +++ b/docs/versioned_docs/version-1.x.x/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.0.0/setup/azure-container.md b/docs/versioned_docs/version-2.0.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.0.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.0.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.0.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.0.0/setup/try-tooljet.md index cb9c7b6182..af33f76dcd 100644 --- a/docs/versioned_docs/version-2.0.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.0.0/setup/try-tooljet.md @@ -26,4 +26,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.1.0/setup/azure-container.md b/docs/versioned_docs/version-2.1.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.1.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.1.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.1.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.1.0/setup/try-tooljet.md index cb9c7b6182..af33f76dcd 100644 --- a/docs/versioned_docs/version-2.1.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.1.0/setup/try-tooljet.md @@ -26,4 +26,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.10.0/setup/azure-container.md b/docs/versioned_docs/version-2.10.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.10.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.10.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.10.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.10.0/setup/try-tooljet.md index cb9c7b6182..af33f76dcd 100644 --- a/docs/versioned_docs/version-2.10.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.10.0/setup/try-tooljet.md @@ -26,4 +26,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.11.0/setup/azure-container.md b/docs/versioned_docs/version-2.11.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.11.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.11.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.11.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.11.0/setup/try-tooljet.md index cb9c7b6182..af33f76dcd 100644 --- a/docs/versioned_docs/version-2.11.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.11.0/setup/try-tooljet.md @@ -26,4 +26,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.12.0/setup/azure-container.md b/docs/versioned_docs/version-2.12.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.12.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.12.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.12.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.12.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.12.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.12.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.13.0/setup/azure-container.md b/docs/versioned_docs/version-2.13.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.13.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.13.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.13.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.13.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.13.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.13.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.14.0/setup/azure-container.md b/docs/versioned_docs/version-2.14.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.14.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.14.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.14.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.14.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.14.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.14.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.15.0/setup/azure-container.md b/docs/versioned_docs/version-2.15.0/setup/azure-container.md index f1f05b299b..8849ef31f2 100644 --- a/docs/versioned_docs/version-2.15.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.15.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.15.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.15.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.15.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.15.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.16.0/setup/azure-container.md b/docs/versioned_docs/version-2.16.0/setup/azure-container.md index f1f05b299b..8849ef31f2 100644 --- a/docs/versioned_docs/version-2.16.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.16.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.16.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.16.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.16.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.16.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.17.0/setup/azure-container.md b/docs/versioned_docs/version-2.17.0/setup/azure-container.md index f1f05b299b..8849ef31f2 100644 --- a/docs/versioned_docs/version-2.17.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.17.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.17.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.17.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.17.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.17.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.18.0/setup/azure-container.md b/docs/versioned_docs/version-2.18.0/setup/azure-container.md index fdbcffd21b..4922f3d482 100644 --- a/docs/versioned_docs/version-2.18.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.18.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.18.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.18.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.18.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.18.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.19.0/setup/azure-container.md b/docs/versioned_docs/version-2.19.0/setup/azure-container.md index f1f05b299b..8849ef31f2 100644 --- a/docs/versioned_docs/version-2.19.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.19.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.19.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.19.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.19.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.19.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.2.0/setup/azure-container.md b/docs/versioned_docs/version-2.2.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.2.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.2.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.2.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.2.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.2.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.2.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.22.0/setup/azure-container.md b/docs/versioned_docs/version-2.22.0/setup/azure-container.md index f1f05b299b..8849ef31f2 100644 --- a/docs/versioned_docs/version-2.22.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.22.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.22.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.22.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.22.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.22.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.23.0/setup/azure-container.md b/docs/versioned_docs/version-2.23.0/setup/azure-container.md index f1f05b299b..8849ef31f2 100644 --- a/docs/versioned_docs/version-2.23.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.23.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.23.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.23.0/setup/try-tooljet.md index 9056cbf370..bbc8419dab 100644 --- a/docs/versioned_docs/version-2.23.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.23.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.24.0/setup/azure-container.md b/docs/versioned_docs/version-2.24.0/setup/azure-container.md index 2596e3b066..d5b355d84a 100644 --- a/docs/versioned_docs/version-2.24.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.24.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.24.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.24.0/setup/try-tooljet.md index 8426d50168..c1ecc82d9a 100644 --- a/docs/versioned_docs/version-2.24.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.24.0/setup/try-tooljet.md @@ -28,4 +28,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.25.0/setup/azure-container.md b/docs/versioned_docs/version-2.25.0/setup/azure-container.md index 2596e3b066..d5b355d84a 100644 --- a/docs/versioned_docs/version-2.25.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.25.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.25.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.25.0/setup/try-tooljet.md index 8426d50168..c1ecc82d9a 100644 --- a/docs/versioned_docs/version-2.25.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.25.0/setup/try-tooljet.md @@ -28,4 +28,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.27.0/setup/azure-container.md b/docs/versioned_docs/version-2.27.0/setup/azure-container.md index 2596e3b066..d5b355d84a 100644 --- a/docs/versioned_docs/version-2.27.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.27.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.27.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.27.0/setup/try-tooljet.md index 8426d50168..c1ecc82d9a 100644 --- a/docs/versioned_docs/version-2.27.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.27.0/setup/try-tooljet.md @@ -28,4 +28,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.29.0/setup/azure-container.md b/docs/versioned_docs/version-2.29.0/setup/azure-container.md index fdbcffd21b..4922f3d482 100644 --- a/docs/versioned_docs/version-2.29.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.29.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.29.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.29.0/setup/try-tooljet.md index 8426d50168..c1ecc82d9a 100644 --- a/docs/versioned_docs/version-2.29.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.29.0/setup/try-tooljet.md @@ -28,4 +28,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.3.0/setup/azure-container.md b/docs/versioned_docs/version-2.3.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.3.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.3.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.3.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.3.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.3.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.3.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.30.0/setup/azure-container.md b/docs/versioned_docs/version-2.30.0/setup/azure-container.md index 2596e3b066..d5b355d84a 100644 --- a/docs/versioned_docs/version-2.30.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.30.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.30.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.30.0/setup/try-tooljet.md index 8426d50168..c1ecc82d9a 100644 --- a/docs/versioned_docs/version-2.30.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.30.0/setup/try-tooljet.md @@ -28,4 +28,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.33.0/setup/azure-container.md b/docs/versioned_docs/version-2.33.0/setup/azure-container.md index 2596e3b066..d5b355d84a 100644 --- a/docs/versioned_docs/version-2.33.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.33.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.33.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.33.0/setup/try-tooljet.md index 8426d50168..c1ecc82d9a 100644 --- a/docs/versioned_docs/version-2.33.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.33.0/setup/try-tooljet.md @@ -28,4 +28,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.34.0/setup/azure-container.md b/docs/versioned_docs/version-2.34.0/setup/azure-container.md index 2596e3b066..d5b355d84a 100644 --- a/docs/versioned_docs/version-2.34.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.34.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.34.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.34.0/setup/try-tooljet.md index 8426d50168..c1ecc82d9a 100644 --- a/docs/versioned_docs/version-2.34.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.34.0/setup/try-tooljet.md @@ -28,4 +28,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.35.0/setup/azure-container.md b/docs/versioned_docs/version-2.35.0/setup/azure-container.md index 2596e3b066..d5b355d84a 100644 --- a/docs/versioned_docs/version-2.35.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.35.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.35.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.35.0/setup/try-tooljet.md index 8426d50168..c1ecc82d9a 100644 --- a/docs/versioned_docs/version-2.35.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.35.0/setup/try-tooljet.md @@ -28,4 +28,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.36.0/setup/azure-container.md b/docs/versioned_docs/version-2.36.0/setup/azure-container.md index 2596e3b066..d5b355d84a 100644 --- a/docs/versioned_docs/version-2.36.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.36.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.36.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.36.0/setup/try-tooljet.md index 8426d50168..c1ecc82d9a 100644 --- a/docs/versioned_docs/version-2.36.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.36.0/setup/try-tooljet.md @@ -28,4 +28,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.39.0/setup/azure-container.md b/docs/versioned_docs/version-2.39.0/setup/azure-container.md index 2596e3b066..d5b355d84a 100644 --- a/docs/versioned_docs/version-2.39.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.39.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.39.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.39.0/setup/try-tooljet.md index 8426d50168..c1ecc82d9a 100644 --- a/docs/versioned_docs/version-2.39.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.39.0/setup/try-tooljet.md @@ -28,4 +28,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.4.0/setup/azure-container.md b/docs/versioned_docs/version-2.4.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.4.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.4.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.4.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.4.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.4.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.4.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.43.0/setup/azure-container.md b/docs/versioned_docs/version-2.43.0/setup/azure-container.md index 58502ad43f..8d0ce5a655 100644 --- a/docs/versioned_docs/version-2.43.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.43.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.43.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.43.0/setup/try-tooljet.md index 8426d50168..c1ecc82d9a 100644 --- a/docs/versioned_docs/version-2.43.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.43.0/setup/try-tooljet.md @@ -28,4 +28,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.5.0/setup/azure-container.md b/docs/versioned_docs/version-2.5.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.5.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.5.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.5.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.5.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.5.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.5.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.50.0-LTS/setup/azure-container.md b/docs/versioned_docs/version-2.50.0-LTS/setup/azure-container.md index df43737ac2..c58de04ed5 100644 --- a/docs/versioned_docs/version-2.50.0-LTS/setup/azure-container.md +++ b/docs/versioned_docs/version-2.50.0-LTS/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.50.0-LTS/setup/try-tooljet.md b/docs/versioned_docs/version-2.50.0-LTS/setup/try-tooljet.md index bf60102512..06b6b4e373 100644 --- a/docs/versioned_docs/version-2.50.0-LTS/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.50.0-LTS/setup/try-tooljet.md @@ -28,4 +28,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.6.0/setup/azure-container.md b/docs/versioned_docs/version-2.6.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.6.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.6.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.6.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.6.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.6.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.6.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.61.0/setup/azure-container.md b/docs/versioned_docs/version-2.61.0/setup/azure-container.md index df43737ac2..c58de04ed5 100644 --- a/docs/versioned_docs/version-2.61.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.61.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -55,7 +55,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.61.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.61.0/setup/try-tooljet.md index 8426d50168..c1ecc82d9a 100644 --- a/docs/versioned_docs/version-2.61.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.61.0/setup/try-tooljet.md @@ -28,4 +28,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.7.0/setup/azure-container.md b/docs/versioned_docs/version-2.7.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.7.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.7.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.7.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.7.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.7.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.7.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.8.0/setup/azure-container.md b/docs/versioned_docs/version-2.8.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.8.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.8.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.8.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.8.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.8.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.8.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.9.0/setup/azure-container.md b/docs/versioned_docs/version-2.9.0/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.9.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.9.0/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.9.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.9.0/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.9.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.9.0/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + + diff --git a/docs/versioned_docs/version-2.9.4/setup/azure-container.md b/docs/versioned_docs/version-2.9.4/setup/azure-container.md index 4f6376141d..7ed06a50a8 100644 --- a/docs/versioned_docs/version-2.9.4/setup/azure-container.md +++ b/docs/versioned_docs/version-2.9.4/setup/azure-container.md @@ -30,7 +30,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by 3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
@@ -38,7 +38,7 @@ Please note that you need to set up a PostgreSQL database manually to be used by - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables.
- Deploying ToolJet on Azure container apps + Deploying ToolJet on Azure container apps
diff --git a/docs/versioned_docs/version-2.9.4/setup/try-tooljet.md b/docs/versioned_docs/version-2.9.4/setup/try-tooljet.md index 8985ed7eec..a11464bb97 100644 --- a/docs/versioned_docs/version-2.9.4/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.9.4/setup/try-tooljet.md @@ -27,4 +27,24 @@ docker run \ - You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). - Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. +#### Dynamic Port Setup +To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command: + +```sh +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 8080:8080 \ + -e PORT=8080 \ + --platform linux/amd64 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:EE-LTS-latest +``` + +- This command will start the ToolJet server on port 8080. +- The `-e PORT=8080` flag sets the `PORT` environment variable to 8080, allowing the ToolJet server to listen on port 8080. + +By following these instructions, you can easily run the ToolJet server on the port of your choice, ensuring flexibility in your setup. + +