aiwatchdog_web/dist/compose.yml
2026-01-12 10:38:09 +08:00

11 lines
337 B
YAML

version: '3.8'
services:
web:
image: nginx
restart: always
volumes:
- ./dist:/usr/share/nginx/html # Ensure ./web/dist folder exists and contains built frontend files
- ./nginx.conf:/etc/nginx/conf.d/default.conf
ports:
- "9809:80" # Expose standard HTTP port, ensure WEB_PORT is defined in .env file