You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can run the command below to have ToolJet up and running right away.
10
+
11
+
```bash
12
+
docker run \
13
+
--name tooljet \
14
+
--restart unless-stopped \
15
+
-p 3000:3000 \
16
+
-v tooljet_data:/var/lib/postgresql/13/main \
17
+
tooljet/try:latest
18
+
```
19
+
20
+
#### Setup information
21
+
22
+
- Runs the ToolJet server on the port 3000 on your machine.
23
+
- Container has postgres already configured within. All the data will be available in the docker volume `tooljet_data`.
24
+
- Default user credentials to login (email: `[email protected]`, password: `password`).
25
+
- 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).
26
+
- Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter.
27
+
28
+
## On Play with docker
29
+
30
+
You can deploy ToolJet on PWD for free with the one-click-deployment button below.
0 commit comments