ToolJet Cloud and self-hosting
ToolJet Cloud#
ToolJet Cloud is the hosted path described in the public repository. Start by creating a ToolJet Cloud account, then build an app in the browser.
Self-host ToolJet#
The public repository documents a Docker quickstart and deployment guides for Docker, Kubernetes, AWS, GCP and Azure.
Code first:
docker run \
--name tooljet \
--restart unless-stopped \
-p 80:80 \
--platform linux/amd64 \
-v tooljet_data:/var/lib/postgresql/13/main \
tooljet/try:ee-lts-latestOutput:
ToolJet starts in a Docker container and is available through the published port when the container is ready.
The command above comes from the public repository. Review the current deployment guide before using it for production.
Choose a deployment path#
Choose Cloud when you want a managed starting point. Choose self-hosting when your team needs to operate the deployment on its own infrastructure.
For exact environment variables, versions and production requirements, use the official setup documentation.