Files
3dp-manager/app/docker-compose.example.yml
T
2025-12-25 22:47:22 +03:00

18 lines
389 B
YAML

services:
node:
build: ./app
env_file: .env
volumes:
- ./subscriptions:/subscriptions
- ./whitelist.txt:/app/whitelist.txt:ro
restart: unless-stopped
nginx:
image: nginx:alpine
restart: unless-stopped
depends_on: [node]
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./subscriptions:/subscriptions