version: '3.8' services: web: build: context: . dockerfile: Dockerfile pull_policy: build ports: - "804:804" networks: - caddy_network volumes: - video_content:/app/public/videos environment: - NODE_ENV=production - PORT=804 restart: unless-stopped volumes: video_content: external: true networks: caddy_network: external: true