Skip to content
Snippets Groups Projects
docker-compose.yml 324 B
Newer Older
Guilhem Saurel's avatar
Guilhem Saurel committed
version: '3'

networks:
  web:
    external: true

services:
  bot:
    build: .
    restart: unless-stopped
    env_file:
      - .env
    networks:
      - web
    labels:
      traefik.enable: "true"
Guilhem Saurel's avatar
Guilhem Saurel committed
      traefik.http.routers.matrix-webhook.rule: "Host(`${CHATONS_SERVICE:-matrixwebhook}.${CHATONS_DOMAIN:-localhost}`)"