ToolJet/docs/versioned_docs/version-2.43.0/setup/try-tooljet.md
Aman Regu 3c9b04c8cd
[docs]: Add docs for v2.43.0 (#9768)
* add: docs for v2.43.0

* fix: broken links

* update: database editor based on feedback

* update: next

* update: querying tjdb with fk

* move available-actions below  create fk

* update: foreign key actions
2024-05-17 21:54:13 +05:30

955 B

id title
try-tooljet Try ToolJet

Try ToolJet

On local with Docker

You can run the command below to have ToolJet up and running right away.

docker run -d \
  --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 hello@tooljet.com.

Setup information

  • Runs the ToolJet server on the port 80 on your machine.
  • Container has postgres already configured within. All the data will be available in the docker volume tooljet_data.
  • You can make use of --env or --env-file flag to test against various env configurables mentioned here.
  • Use docker stop tooljet to stop the container and docker start tooljet to start the container thereafter.