-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdocker-compose.yaml
55 lines (54 loc) · 1.27 KB
/
docker-compose.yaml
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
version: "3.9"
services:
carbonio-ce-ubuntu-focal:
profiles:
- ubuntu-focal
build:
context: ./../../
dockerfile: docker/single-server/Dockerfile
entrypoint: "/opt/zextras/entrypoint.sh"
extra_hosts:
- "carbonio-system.svc.cluster.local:127.0.0.1"
healthcheck:
interval: 60s
retries: 10
start_period: 20s
test: nc -z localhost 443 || exit 1
timeout: 10s
hostname: carbonio.carbonio-system.svc.cluster.local
ports:
- "25:25"
- "110:110"
- "443:443"
- "465:465"
- "587:587"
- "6071:6071"
- "7071:7071"
- "8080:8080"
user: zextras
carbonio-ce-rocky-8:
profiles:
- rocky-8
build:
context: ./../../
dockerfile: docker/single-server/Dockerfile-rocky-8
entrypoint: "/opt/zextras/entrypoint.sh"
extra_hosts:
- "carbonio-system.svc.cluster.local:127.0.0.1"
healthcheck:
interval: 60s
retries: 10
start_period: 20s
test: nc -z localhost 443 || exit 1
timeout: 10s
hostname: carbonio.carbonio-system.svc.cluster.local
ports:
- "25:25"
- "110:110"
- "443:443"
- "465:465"
- "587:587"
- "6071:6071"
- "7071:7071"
- "8080:8080"
user: zextras