Files
chronus/docker-compose.yml
Atridad Lahiji 091766d6e4
All checks were successful
Docker Deploy / build-and-push (push) Successful in 4m11s
Fixed a few things lol
2026-01-17 22:19:10 -07:00

15 lines
272 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
volumes:
- ${ROOT_DIR}:/app/data
restart: unless-stopped
networks: {}