You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
woodbine.nyc/services/web.yaml

27 lines
470 B

version: "3.8"
services:
web:
build:
context: ./web
dockerfile: Containerfile
restart: unless-stopped
ports:
- "8081:80"
- "4431:443"
- "4431:443/udp"
volumes:
- ./web/Caddyfile:/etc/caddy/Caddyfile
- ../data/web/site:/site
- ../data/web/data:/data
- caddy_config:/config
environment:
- DOMAIN
caddy:
volumes:
- ./web/Proxyfile:/etc/caddy.d/web:ro
volumes:
caddy_config: