diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-08-25 04:39:44 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-08-25 04:39:44 +0200 |
commit | ec0e483d99200bda02547e425fb5d08697f6156a (patch) | |
tree | 7d35c9e24d96a2c178a0c4d7322ec7dd124db2b2 /cluster/prod/app/email/build/docker-compose.yml | |
parent | ea1b0e9d19d0e1457fa6f6aee593f56d4347ae32 (diff) | |
download | nixcfg-ec0e483d99200bda02547e425fb5d08697f6156a.tar.gz nixcfg-ec0e483d99200bda02547e425fb5d08697f6156a.zip |
Add email support
Diffstat (limited to 'cluster/prod/app/email/build/docker-compose.yml')
-rw-r--r-- | cluster/prod/app/email/build/docker-compose.yml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/cluster/prod/app/email/build/docker-compose.yml b/cluster/prod/app/email/build/docker-compose.yml new file mode 100644 index 0000000..0826142 --- /dev/null +++ b/cluster/prod/app/email/build/docker-compose.yml @@ -0,0 +1,36 @@ +version: '3.4' +services: + + # Email + sogo: + build: + context: ./sogo + args: + # fake for now + VERSION: 5.0.0 + image: superboum/amd64_sogo:v7 + + alps: + build: + context: ./alps + args: + VERSION: 9bafa64b9d + image: superboum/amd64_alps:v1 + + dovecot: + build: + context: ./dovecot + image: superboum/amd64_dovecot:v6 + + postfix: + build: + context: ./postfix + args: + # https://packages.debian.org/fr/buster/postfix + VERSION: 3.4.14-0+deb10u1 + image: superboum/amd64_postfix:v3 + + opendkim: + build: + context: ./opendkim + image: superboum/amd64_opendkim:v6 |