forked from SoftwareAG/sagdevops-hello-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
39 lines (35 loc) · 903 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
version: "3"
services:
cc:
image: store/softwareag/commandcentral:10.1.0.1-server
ports:
- "8090:8090"
- "8091:8091"
environment:
- CC_PASSWORD
test1:
image: store/softwareag/commandcentral:10.1.0.1-node
ports:
- "5555:5555" # IS
- "9000:9000" # UM
- "8585:8585" # MWS
- "8072:8072" # Applatform
environment:
- CC_AUTO_REGISTER=1 # auto-registration
depends_on:
- cc
test2:
image: store/softwareag/commandcentral:10.1.0.1-node
environment:
- CC_AUTO_REGISTER=0 # no auto-registration
depends_on:
- cc
init:
image: store/softwareag/commandcentral:10.1.0.1-server
environment:
CC_SERVER: cc
command: # any client command againt a remote server
sagcc add landscape nodes alias=test2 url=https://test2:8093 -e 200
depends_on:
- test2
- cc