Files
chronus/docker-compose.yml
Atridad Lahiji 705358d44c
All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m55s
Please...
2026-02-13 11:18:20 -07:00

16 lines
305 B
YAML

services:
chronus:
image: ${IMAGE}
ports:
- ${APP_PORT}:4321
environment:
- NODE_ENV=production
- HOST=0.0.0.0
- PORT=4321
- DATA_DIR=/app/data
- JWT_SECRET=${JWT_SECRET}
volumes:
- ${ROOT_DIR}:/app/data
restart: unless-stopped
networks: {}