mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
- Added warnings for enabling ToolJet AI features across various setup guides. - Clarified PostgreSQL database setup instructions and recommended using specific services (Cloud SQL, Azure Database for PostgreSQL, RDS). - Introduced Redis configuration guidelines for multi-service setups in Helm, AKS, EKS, GKE, and OpenShift documentation. - Updated environment variable requirements for ToolJet and PostgREST, ensuring unique database names and proper configurations. - Included SSL configuration instructions for AWS RDS PostgreSQL connections. - Changed Docker image tags in the Try ToolJet setup to use the latest LTS version. - Enhanced overall clarity and structure of the documentation for better user guidance.
1.6 KiB
1.6 KiB
| 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 \
--name tooljet \
--restart unless-stopped \
-p 80:80 \
--platform linux/amd64 \
-v tooljet_data:/var/lib/postgresql/13/main \
tooljet/try:ee-latest-lts
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
--envor--env-fileflag to test against various env configurables mentioned here. - Use
docker stop tooljetto stop the container anddocker start tooljetto 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:
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-latest-lts
- This command will start the ToolJet server on port 8080.
- The
-e PORT=8080flag sets thePORTenvironment 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.
If you have any questions feel free to join our Slack Community or send us an email at hello@tooljet.com.