Files
gupi-osint-board/docker-compose.prod.yml
T

26 lines
621 B
YAML
Raw Normal View History

2026-08-14 12:43:11 +02:00
services:
app:
build:
context: .
dockerfile: Dockerfile
container_name: gnommo-osint-board
restart: unless-stopped
environment:
NODE_ENV: production
PORT: 8787
DATABASE_URL: postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@gnommo-db:5432/${POSTGRES_DB}
CORS_ORIGIN: https://osint.${DOMAIN}
JWT_SECRET: ${JWT_SECRET}
2026-08-14 12:43:11 +02:00
LEVEL_EDITING_ENABLED: ${LEVEL_EDITING_ENABLED:-false}
MAX_DOCUMENT_BYTES: ${MAX_DOCUMENT_BYTES:-26214400}
expose:
- "8787"
networks:
- default
- gnommo
networks:
default: {}
gnommo:
external: true