22 lines
No EOL
419 B
YAML
22 lines
No EOL
419 B
YAML
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/dist/videos
|
|
environment:
|
|
- NODE_ENV=production
|
|
- PORT=804
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
caddy_network:
|
|
external: true |