forked from SoftwareAG/sagdevops-cc-docker-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
66 lines (60 loc) · 1.51 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
version: "3.0"
services:
simple:
build:
context: .
dockerfile: Dockerfile.simple
ports:
- "5551:5555"
volumes:
- ./licenseKey.xml:/opt/softwareag/IntegrationServer/instances/default/config/licenseKey.xml
links:
- cc
environment:
- CC_SERVER=cc
- CC_AUTO_REGISTER=1
unmanaged:
build:
context: .
dockerfile: Dockerfile.unmanaged
ports:
- "5552:5555"
volumes:
- ./licenseKey.xml:/opt/softwareag/IntegrationServer/instances/default/config/licenseKey.xml
depends_on:
- simple
managed:
build:
context: .
dockerfile: Dockerfile.managed
ports:
- "5553:5555" # http://localhost:5553
environment:
- CC_SERVER=cc
- CC_AUTO_REGISTER=1
volumes:
- ./licenseKey.xml:/opt/softwareag/IntegrationServer/instances/default/config/licenseKey.xml
links:
- cc
depends_on:
- simple
cc:
image: store/softwareag/commandcentral:10.1.0.1-server
ports:
- "8090:8090"
- "8091:8091"
init:
image: store/softwareag/commandcentral:10.1.0.1-server # -client-alpine
environment:
- CC_SERVER=cc
command: sagcc list landscape nodes local -e ONLINE -w 240
links:
- cc
test:
image: store/softwareag/commandcentral:10.1.0.1-server # -client-alpine
environment:
- CC_SERVER=cc
command: sagcc list monitoring state -e integrationServer-default -w 240
links:
- managed
- cc