docs/versioned_docs/version-2.17.0/setup/try-tooljet.md
You can run the command below to have ToolJet up and running right away.
docker run \
--name tooljet \
--restart unless-stopped \
-p 80:80 \
--platform linux/amd64 \
-v tooljet_data:/var/lib/postgresql/13/main \
tooljet/try:latest
If you have any questions feel free to join our Slack Community or send us an email at [email protected].
tooljet_data.--env or --env-file flag to test against various env configurables mentioned here.docker stop tooljet to stop the container and docker start tooljet to start the container thereafter.To run the ToolJet server on a different port, such as 8080 or any other port of your choice, use the following command:
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
-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.