mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-22 22:17:55 +00:00
* docs: jira * docs: formatting + Client Credentials grant type * docs: connection string pgsql * docs: parameterized queries mysql * docs: parameterized queries in PostgreSQL * docs: update mysql example * docs: TJDB sql editor * docs: add metadata to REST API * docs: add, update postgresql media * docs: add metadata to graphql * docs: update parameterized queries * docs: add parameterized queries for mssql * docs: add SSL Cert to mysql * docs: TJDB SQL restricted commands * docs: update JIRA token location * docs: update delete issue example * docs: update find user by query example * docs: remove session id from get assignable users * docs: use correct image for get issues for board * docs: update create issue example * docs: update delete issue media * docs: update assignable users media * docs: update examples * docs: update key desc * docs: v2.68.0-Beta
48 lines
1.6 KiB
Markdown
48 lines
1.6 KiB
Markdown
---
|
|
id: try-tooljet
|
|
title: Try ToolJet
|
|
---
|
|
|
|
# Try ToolJet
|
|
|
|
## On local with Docker
|
|
|
|
You can run the command below to have ToolJet up and running right away.
|
|
|
|
```bash
|
|
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](https://tooljet.com/slack) 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](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.
|