2024-02-27 15:05:31 +00:00
|
|
|
version: "3"
|
2021-07-12 09:15:42 +00:00
|
|
|
|
|
|
|
|
services:
|
2022-12-30 11:01:38 +00:00
|
|
|
tooljet:
|
2021-07-12 09:15:42 +00:00
|
|
|
tty: true
|
|
|
|
|
stdin_open: true
|
2023-08-03 10:10:11 +00:00
|
|
|
container_name: Tooljet-app
|
2022-09-05 15:36:11 +00:00
|
|
|
image: tooljet/tooljet-ce:latest
|
2021-07-12 09:15:42 +00:00
|
|
|
restart: always
|
2022-03-04 02:30:47 +00:00
|
|
|
env_file: .env
|
2021-07-12 09:15:42 +00:00
|
|
|
ports:
|
|
|
|
|
- 80:80
|
|
|
|
|
environment:
|
2022-09-05 15:36:11 +00:00
|
|
|
SERVE_CLIENT: "true"
|
|
|
|
|
PORT: "80"
|
2021-08-26 15:04:30 +00:00
|
|
|
command: npm run start:prod
|
2023-08-03 10:10:11 +00:00
|
|
|
# Uncomment if ENABLE_TOOLJET_DB=true
|
|
|
|
|
postgrest:
|
2024-03-05 07:28:28 +00:00
|
|
|
image: postgrest/postgrest:v12.0.2
|
2023-08-03 10:10:11 +00:00
|
|
|
restart: always
|
|
|
|
|
env_file: .env
|
|
|
|
|
environment:
|
|
|
|
|
- PGRST_SERVER_PORT=80
|
2024-10-30 12:01:08 +00:00
|
|
|
- PGRST_DB_PRE_CONFIG=postgrest.pre_config
|