docker-compose.yml 371 B

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