-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
70 lines (64 loc) · 1.71 KB
/
docker-compose.yml
File metadata and controls
70 lines (64 loc) · 1.71 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
version: "3.2"
services:
cc:
image: softwareag/commandcentral:10.1.0.1-server
ports:
- "8090:8090"
- "8091:8091"
- "8092:8092" # for master mirror
environment:
- CC_PASSWORD
dev1: # this is main test node
image: softwareag/commandcentral:10.1.0.1-node
ports: # export all known ports for easy testing, but dont statically bind them to allow CI
- target: 5555 # IS
#published: 5555
- target: 9000 # UM
#published: 9000
- target: 8585 # UM
#published: 8585
#- "8080:8080" # ?
- target: 8072 # Applatform
#published: 8072
environment:
- CC_AUTO_REGISTER=0
dev2: # this is supporting node
image: softwareag/commandcentral:10.1.0.1-node
environment:
- CC_AUTO_REGISTER=0
devoracle:
image: daerepository03.eur.ad.sag:4443/ccdevops/oracle:11
ports:
- target: 1521 # Oracle port
#published: 1521
environment:
- ORACLE_ALLOW_REMOTE=true
init:
image: softwareag/commandcentral:10.1.0.1-server
volumes:
- ./:/src
- ./clients/docker.properties:/root/.sag/cc.properties
environment:
- CC_SERVER=cc
- CC_ENV=docker
- CC_PASSWORD
- EMPOWER_USR
- EMPOWER_PSW
command: sagccant credentials masters layers licenses
depends_on:
- cc
initdev:
image: softwareag/commandcentral:10.1.0.1-server
volumes:
- ./:/src
- ./clients/docker.properties:/root/.sag/cc.properties
environment:
- CC_SERVER=cc
- CC_PASSWORD
- CC_ENV=docker
command: sagccant nodes oracledb
depends_on:
- cc
- devoracle
- dev1
- dev2