-
Notifications
You must be signed in to change notification settings - Fork 22
/
docker-compose.override.yml
60 lines (53 loc) · 1.39 KB
/
docker-compose.override.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
version: "3.1"
# Complementary services, not part of geOrchestra core.
# They are made to ease your life as a developer.
# **NOT** production ready !
volumes:
smtp_maildir:
services:
caddy:
image: caddy:2.8-alpine
ports:
- "80:80"
- "443:443"
- "127.0.0.1:2019:2019"
environment:
- CADDY_ADMIN=0.0.0.0:2019
volumes:
- ./resources/ssl:/etc/certs:ro
- ./resources/caddy/etc:/etc/caddy:ro
- ./resources/caddy/data:/data/caddy
- ./resources/static:/usr/share/caddy/static:ro
restart: always
healthcheck:
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:2019/reverse_proxy/upstreams >/dev/null || exit 1"]
interval: 30s
timeout: 10s
retries: 10
env_file:
- .envs-common
smtp:
image: camptocamp/smtp-sink:latest
volumes:
- smtp_maildir:/home/smtp/Maildir/
restart: always
courier-imap:
image: camptocamp/courier-imap:latest
volumes:
- smtp_maildir:/home/smtp/Maildir/
restart: always
webmail:
image: camptocamp/sqwebmail:latest
environment:
- IMAP_HOSTNAME=courier-imap
- SMTP_HOSTNAME=smtp-sink
volumes:
- smtp_maildir:/home/smtp/Maildir/
restart: always
ssh:
image: georchestra/ssh_data:latest
ports:
- "2222:22"
volumes:
- geoserver_geodata:/mnt/geoserver_geodata
restart: always