forked from wise2c-devops/breeze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
43 lines (43 loc) · 902 Bytes
/
docker-compose.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
version: '2'
services:
deploy:
container_name: deploy-main
image: wise2c/pagoda:v1.2.0
restart: always
entrypoint: sh
command:
- -c
- "/root/pagoda -logtostderr -v 4 -w /workspace"
ports:
- 88:80
- 8088:8080
volumes:
- $HOME/.ssh:/root/.ssh
- $PWD/deploy:/deploy
volumes_from:
- playbook
ui:
container_name: deploy-ui
image: wise2c/deploy-ui:v1.8
restart: always
network_mode: "service:deploy"
playbook:
container_name: deploy-playbook
image: wise2c/playbook:v1.17.0
volumes:
- playbook:/workspace
yum-repo:
container_name: deploy-yumrepo
image: wise2c/yum-repo:v1.17.0
ports:
- 2009:2009
restart: always
apt-source:
container_name: deploy-aptsource
image: wise2c/apt-source:v1.17.0
ports:
- 2008:2008
restart: always
volumes:
playbook:
external: false