summaryrefslogtreecommitdiff
path: root/mail/docker-compose.yml
blob: b137c061f0234c70006ec98b2402d9c2ab5f8cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
services:
  mail:
    build: .
    container_name: mail
    hostname: hetzner.yyamashita.com
    volumes:
      - /etc/opendkim:/etc/opendkim:ro
      - mail_queue:/var/spool/postfix
    dns:
      - 8.8.8.8
      - 1.1.1.1
    restart: unless-stopped
    networks:
      - web

networks:
  web:
    external: true
    name: web

volumes:
  mail_queue: