ToolJet/docs/versioned_docs/version-2.39.0/setup/try-tooljet.md
Karan Rathod 9423e890c8
[docs]: Create new version for recent updates (#9635)
* create new version

* revert changes in versions.json

* add system requirements in version 2.39
2024-05-08 11:12:15 +05:30

31 lines
955 B
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 -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](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.