mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* Chore: Tooljet database and marketplace are mandatory set on render and other deployment file for CE * added PGRST_DB_PRE_CONFIG=postgrest.pre_config * edited .env.example file
24 lines
522 B
YAML
24 lines
522 B
YAML
version: "3"
|
|
|
|
services:
|
|
tooljet:
|
|
tty: true
|
|
stdin_open: true
|
|
container_name: Tooljet-app
|
|
image: tooljet/tooljet-ce:latest
|
|
restart: always
|
|
env_file: .env
|
|
ports:
|
|
- 80:80
|
|
environment:
|
|
SERVE_CLIENT: "true"
|
|
PORT: "80"
|
|
command: npm run start:prod
|
|
# Uncomment if ENABLE_TOOLJET_DB=true
|
|
postgrest:
|
|
image: postgrest/postgrest:v12.0.2
|
|
restart: always
|
|
env_file: .env
|
|
environment:
|
|
- PGRST_SERVER_PORT=80
|
|
- PGRST_DB_PRE_CONFIG=postgrest.pre_config
|