docker-compose.yml 276 B

123456789101112131415
  1. version: '3'
  2. networks:
  3. web:
  4. external: true
  5. services:
  6. app:
  7. build: .
  8. restart: unless-stopped
  9. labels:
  10. traefik.enable: "true"
  11. traefik.frontend.rule: "Host: ${CHATONS_DOMAIN:-localhost}, www.${CHATONS_DOMAIN:-localhost}"
  12. networks:
  13. - web