-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
86 lines (86 loc) · 2.4 KB
/
docker-compose.yml
File metadata and controls
86 lines (86 loc) · 2.4 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
version: '2.1'
services:
# jobs
availability-watcher:
image: seecloud/availability:${TAG:-latest}
volumes:
- ${DIR}/configs/availability:/etc/availability:ro
networks:
- oss-net
entrypoint:
- availability-watcher
restart: always
health-collector:
image: seecloud/health:${TAG:-latest}
volumes:
- ${DIR}/configs/health:/etc/health:ro
environment:
- RUN_HEALTH_JOB=True
networks:
- oss-net
restart: always
security-checker:
image: seecloud/security:${TAG:-latest}
volumes:
- ${DIR}/configs/security:/etc/oss/security:ro
entrypoint:
- security-checker --config-file /etc/oss/security/config.yaml
networks:
- oss-net
restart: always
# apis
availability-api:
image: seecloud/availability:${TAG:-latest}
volumes:
- ${DIR}/configs/availability:/etc/availability:ro
entrypoint:
- ./entrypoint-api.sh
networks:
oss-net:
aliases:
- availability-api
restart: always
health-api:
image: seecloud/health:${TAG:-latest}
volumes:
- ${DIR}/configs/health:/etc/health:ro
environment:
- RUN_HEALTH_API=True
networks:
oss-net:
aliases:
- health-api
restart: always
security-api:
image: seecloud/security:${TAG:-latest}
volumes:
- ${DIR}/configs/security:/etc/oss/security:ro
entrypoint:
- security-api --config-file /etc/oss/security/config.yaml
networks:
- oss-net
restart: always
ceagle:
image: seecloud/ceagle:${TAG:-latest}
volumes:
- ${DIR}/configs/ceagle:/etc/ceagle:ro
networks:
oss-net:
aliases:
- ceagle
restart: always
# ui
devops-portal:
image: seecloud/fuel-devops-portal:${TAG:-latest}
volumes:
- ${DIR}/configs/nginx:/etc/nginx/conf.d/:ro
ports:
- "${PORTAL_ADDRESS:-0.0.0.0}:${PORTAL_HTTP_PORT:-80}:80"
- "${PORTAL_ADDRESS:-0.0.0.0}:${PORTAL_HTTPS_PORT:-443}:443"
networks:
- oss-net
restart: always
networks:
oss-net:
external:
name: ${PROJECT}_oss-net