diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8661b3d..7fa704c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,7 +12,6 @@ updates: - "/docker/home/node-red" - "/docker/home/zigbee2mqtt" - "/docker/infrastructure/mail/roundcube" - - "/docker/infrastructure/mail/stalwart" - "/docker/infrastructure/network/traefik" - "/docker/infrastructure/squid" - "/docker/infrastructure/sshportal" diff --git a/.swarmcd/stacks.yaml b/.swarmcd/stacks.yaml index a50a0de..6e25fae 100644 --- a/.swarmcd/stacks.yaml +++ b/.swarmcd/stacks.yaml @@ -33,11 +33,6 @@ roundcube: branch: main compose_file: docker/infrastructure/mail/roundcube/docker-compose.yml -stalwart: - repo: homeprod - branch: main - compose_file: docker/infrastructure/mail/stalwart/docker-compose.yml - traefik: repo: homeprod branch: main diff --git a/docker/infrastructure/mail/stalwart/docker-compose.yml b/docker/infrastructure/mail/stalwart/docker-compose.yml deleted file mode 100644 index 006df07..0000000 --- a/docker/infrastructure/mail/stalwart/docker-compose.yml +++ /dev/null @@ -1,40 +0,0 @@ -services: - stalwart: - image: stalwartlabs/stalwart:v0.15.5 - container_name: stalwart - networks: - - default - - proxy - volumes: - - stalwart_data:/opt/stalwart - ports: - - target: 25 - published: 25 - mode: host - - target: 465 - published: 465 - mode: host - - target: 993 - published: 993 - mode: host - - target: 587 - published: 587 - mode: host - - "8080" - labels: - - "traefik.enable=true" - - "traefik.http.routers.stalwart.rule=Host(`mail.vhaudiquet.fr`)" - - "traefik.http.services.stalwart.loadbalancer.server.port=8080" - -volumes: - stalwart_data: - driver: local - driver_opts: - type: 'none' - o: 'bind' - device: '/app/stalwart/data' - -networks: - proxy: - name: proxy - external: true