Coding_Art_KEW_22/docker-compose.yml

21 lines
468 B
YAML
Raw Normal View History

version: '3'
services:
nginx:
image: nginx
container_name: art.ag-link.xyz
restart: unless-stopped
volumes:
- dist/website:/usr/share/nginx/html:ro
networks:
- proxy
labels:
- "traefik.enable=true"
- "traefik.http.routers.art.rule=Host(`art.ag-link.xyz`)"
- "traefik.http.routers.art.entrypoints=websecure"
- "traefik.http.routers.art.tls.certresolver=art-resolver"
networks:
proxy:
external: true