docker-compose.yml 468 B

123456789101112131415161718
  1. version: '3'
  2. networks:
  3. web:
  4. external: true
  5. services:
  6. web:
  7. image: nginx:alpine
  8. restart: unless-stopped
  9. volumes:
  10. - ${CHATONS_ROOT_DIR:-/srv/chatons}/static/${CHATONS_STATIC_SITE:-static}:/usr/share/nginx/html:ro
  11. labels:
  12. traefik.enable: "true"
  13. traefik.frontend.rule: "Host: ${CHATONS_STATIC_SITE:-static}.${CHATONS_DOMAIN:-localhost}, www.${CHATONS_STATIC_SITE:-static}.${CHATONS_DOMAIN:-localhost}"
  14. networks:
  15. - web