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

17 lines
361 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
depends_on: [node]
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./subscriptions:/subscriptions