deafgain-website/docker-compose.yml
2024-12-09 17:12:44 -06:00

24 lines
438 B
YAML

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