blob: c45cf79abfe7a1325d61ef77031966c387eab0d4 [file] [log] [blame]
Nico Huber8cd50ee2023-06-24 15:35:16 +00001version: "3"
2services:
3 nginx:
Nico Huber38c14da2023-06-24 16:59:28 +00004 build:
5 context: .
6 dockerfile: nginx/Dockerfile
Nico Huberaa15aee2023-07-01 22:35:45 +00007 args:
8 - SELFSIGNED_REQ_HOST=${SA_PUBLIC_DOMAIN_NAME}
9 - SELFSIGNED_REQ_ALT_NAMES=DNS:${SA_PUBLIC_DOMAIN_NAME},
10 DNS:id.${SA_PUBLIC_DOMAIN_NAME}, DNS:mail.${SA_PUBLIC_DOMAIN_NAME},
11 DNS:review.${SA_PUBLIC_DOMAIN_NAME}
Nico Huberd6528722023-07-01 14:38:39 +000012 env_file: environment
Nico Huber8cd50ee2023-06-24 15:35:16 +000013 ports:
14 - "80:80"
Nico Huber38c14da2023-06-24 16:59:28 +000015 - "443:443"
Nico Huber8cd50ee2023-06-24 15:35:16 +000016 networks:
Nico Huberf4fbab52023-07-25 10:57:08 +000017 - kcnet
Nico Huber8cd50ee2023-06-24 15:35:16 +000018 - simpleidnet
Nico Hubera1a296f2023-06-25 10:07:07 +000019 - gerritnet
Nico Huber8cd50ee2023-06-24 15:35:16 +000020 volumes:
Nico Huber15edd772023-07-01 18:16:50 +000021 - ./certbot/www/:/var/www/certbot/:ro
Nico Huberd6528722023-07-01 14:38:39 +000022 - ./simpleid/identities/:/var/db/simpleid-templates/:ro
23 - ./simpleid/www/:/var/www/simpleid/:ro
Nico Huber15edd772023-07-01 18:16:50 +000024 - ./certs/:/etc/nginx/certs/:rw
Nico Huberd6528722023-07-01 14:38:39 +000025 - ./nginx/sa.conf:/etc/nginx/conf.d/sa.conf.template:ro
Nico Huber8cd50ee2023-06-24 15:35:16 +000026 - ./nginx/empty.conf:/etc/nginx/conf.d/default.conf:ro
27 - ./logs/nginx:/var/log/nginx/:rw
Nico Huber5d7a1cb2023-07-23 19:36:14 +000028 postgres:
29 build:
30 context: ./postgres/docker/
Nico Huber472cfc72023-07-25 14:20:55 +000031 secrets:
32 - seed
Nico Huber5d7a1cb2023-07-23 19:36:14 +000033 networks:
34 - dbnet
35 volumes:
36 - ./postgres/postgres.conf:/etc/postgresql/postgresql.conf:ro
37 - ./postgres/init.sh:/docker-entrypoint-initdb.d/init.sh:ro
38 - ./postgres/data/:/var/lib/postgresql/data/:rw
Nico Huberf4fbab52023-07-25 10:57:08 +000039 keycloak:
40 build:
41 context: ./keycloak/docker/
42 args:
43 - KC_DB=postgres
Nico Huber472cfc72023-07-25 14:20:55 +000044 secrets:
45 - source : seed
46 mode: 0400
Nico Huberf4fbab52023-07-25 10:57:08 +000047 networks:
48 - kcnet
49 - dbnet
50 env_file: environment
51 environment:
52 - KC_PROXY=edge
53 - KC_HOSTNAME_DEBUG=true
54 - KC_HOSTNAME_STRICT=true
55 - KC_HOSTNAME_STRICT_BACKCHANNEL=true
56 - KC_HOSTNAME_URL=https://id.${SA_PUBLIC_DOMAIN_NAME}/
57 - KC_HOSTNAME_ADMIN_URL=https://id.${SA_PUBLIC_DOMAIN_NAME}/
58 - KC_DB_USERNAME=keycloak
59 - KC_DB_URL_HOST=postgres
60 - KC_DB_URL=jdbc:postgresql://postgres/keycloak
61 - KC_DB_POOL_MAX_SIZE=16
62 - KEYCLOAK_ADMIN=deusarcadia
63 - KEYCLOAK_ADMIN_PASSWORD=arcanumhomini
Nico Huber8cd50ee2023-06-24 15:35:16 +000064 simpleid:
65 build:
66 context: .
67 dockerfile: simpleid/Dockerfile
Nico Huberd6528722023-07-01 14:38:39 +000068 env_file: environment
Nico Huber8cd50ee2023-06-24 15:35:16 +000069 networks:
70 - simpleidnet
71 volumes:
72 - ./simpleid/cache/:/var/cache/simpleid/:rw
Nico Huberd6528722023-07-01 14:38:39 +000073 - ./simpleid/identities/:/var/db/simpleid-templates/:ro
Nico Huber8cd50ee2023-06-24 15:35:16 +000074 - ./simpleid/store/:/var/lib/simpleid/:rw
Nico Huberd6528722023-07-01 14:38:39 +000075 - ./simpleid/www/:/var/www/simpleid/:ro
Nico Huber8cd50ee2023-06-24 15:35:16 +000076 - ./logs/simpleid/:/var/log/:rw
Nico Hubera1a296f2023-06-25 10:07:07 +000077 gerrit:
78 build:
79 context: .
80 dockerfile: gerrit/Dockerfile
Nico Huber177e6102023-07-25 13:39:16 +000081 secrets:
82 - source : seed
83 mode: 0400
Nico Huberb650ed42023-07-20 17:08:54 +000084 hostname: review.${SA_PUBLIC_DOMAIN_NAME}
85 env_file:
86 - gerrit/environment
87 - environment
Nico Hubera1a296f2023-06-25 10:07:07 +000088 environment:
Nico Huberb650ed42023-07-20 17:08:54 +000089 - GERRIT_USER_EMAIL=gerrit@${SA_PUBLIC_DOMAIN_NAME}
Nico Hubera1a296f2023-06-25 10:07:07 +000090 - HTTPD_LISTEN_URL=proxy-https://*:8080/
Nico Huber3c7f1c02023-07-20 17:18:51 +000091 ports:
92 - "29418:29418"
Nico Hubera1a296f2023-06-25 10:07:07 +000093 networks:
94 - gerritnet
95 volumes:
96 - ./logs/gerrit/:/var/gerrit/logs/:rw
97 - ./gerrit/etc/:/var/gerrit/etc/:rw
98 - ./gerrit/db/:/var/gerrit/db/:rw
99 - ./gerrit/git/:/var/gerrit/git/:rw
100 - ./gerrit/index/:/var/gerrit/index/:rw
101 - ./gerrit/cache/:/var/gerrit/cache/:rw
Nico Huber54073102023-06-25 11:36:59 +0000102 - ./gerrit/gerrit-oauth-provider.jar:/var/gerrit/plugins/gerrit-oauth-provider.jar:ro
Nico Huber804b41b2023-07-02 15:53:42 +0000103 mailserver:
104 image: ghcr.io/docker-mailserver/docker-mailserver:12
Nico Huber177e6102023-07-25 13:39:16 +0000105 secrets:
106 - source : seed
107 mode: 0400
Nico Huber804b41b2023-07-02 15:53:42 +0000108 #container_name: mailserver
109 # Provide the FQDN of your mail server here (Your DNS MX record should point to this value)
110 hostname: mail.${SA_PUBLIC_DOMAIN_NAME}
111 env_file: mail/mailserver.env
112 # More information about the mail-server ports:
113 # https://docker-mailserver.github.io/docker-mailserver/latest/config/security/understanding-the-ports/
114 # To avoid conflicts with yaml base-60 float, DO NOT remove the quotation marks.
115 ports:
116 - "25:25" # SMTP (explicit TLS => STARTTLS)
117 - "143:143" # IMAP4 (explicit TLS => STARTTLS)
118 - "465:465" # ESMTP (implicit TLS)
119 - "587:587" # ESMTP (explicit TLS => STARTTLS)
120 - "993:993" # IMAP4 (implicit TLS)
Nico Huberb650ed42023-07-20 17:08:54 +0000121 networks:
122 - gerritnet
Nico Huberf4fbab52023-07-25 10:57:08 +0000123 - kcnet
Nico Huber804b41b2023-07-02 15:53:42 +0000124 volumes:
125 - ./logs/mail-supervisor/:/var/log/supervisor/:rw
126 - ./logs/mail/:/var/log/mail/:rw
Nico Huber49781a72023-07-02 16:29:22 +0000127 - ./certs/:/etc/letsencrypt/:ro
Nico Huber804b41b2023-07-02 15:53:42 +0000128 - ./mail/data/:/var/mail/:rw
129 - ./mail/state/:/var/mail-state/:rw
130 - ./mail/config/:/tmp/docker-mailserver/:rw
Nico Huber22aecea2023-07-19 01:39:58 +0000131 - ./mail/rspamd-override.d/:/etc/rspamd/override.d/:rw
Nico Huber804b41b2023-07-02 15:53:42 +0000132 - /etc/localtime:/etc/localtime:ro
133 restart: always
134 stop_grace_period: 1m
135 # Uncomment if using `ENABLE_FAIL2BAN=1`:
136 # cap_add:
137 # - NET_ADMIN
138 healthcheck:
139 test: "ss --listening --tcp | grep -P 'LISTEN.+:smtp' || exit 1"
140 timeout: 3s
141 retries: 0
Nico Huber8cd50ee2023-06-24 15:35:16 +0000142networks:
143 simpleidnet:
144 driver: bridge
Nico Huber4bc2bdd2023-07-01 22:33:36 +0000145 ipam:
146 config:
147 - subnet: 10.12.14.16/29
Nico Hubera1a296f2023-06-25 10:07:07 +0000148 gerritnet:
149 driver: bridge
Nico Huber4bc2bdd2023-07-01 22:33:36 +0000150 ipam:
151 config:
152 - subnet: 10.12.14.24/29
Nico Huber5d7a1cb2023-07-23 19:36:14 +0000153 dbnet:
154 driver: bridge
155 ipam:
156 config:
157 - subnet: 10.12.14.40/29
Nico Huberf4fbab52023-07-25 10:57:08 +0000158 kcnet:
159 driver: bridge
160 ipam:
161 config:
162 - subnet: 10.12.14.48/29
Nico Huber8d9f45e2023-07-25 13:22:32 +0000163secrets:
164 seed:
165 file: .seed