Skip to content

Commit 3f0ba36

Browse files
Pogrebnyak, SergeiPogrebnyak, Sergei
Pogrebnyak, Sergei
authored and
Pogrebnyak, Sergei
committed
10.1 latest
1 parent 12ef335 commit 3f0ba36

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM store/softwareag/commandcentral:10.1.0.1-server
1+
FROM store/softwareag/commandcentral:10.1-server
22

33
# customize Command Central settings example
44
RUN echo com.softwareag.platform.management.client.template.composite.skip.restart.runtimes=true>>$SAG_HOME/profiles/CCE/configuration/config.ini

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Login to Docker with your Docker ID from your console and verify you can downloa
99

1010
```bash
1111
docker login
12-
docker pull store/softwareag/commandcentral:10.1.0.1-server
12+
docker pull store/softwareag/commandcentral:10.1-server
1313
```
1414

1515
## Starting a default Command Central server
@@ -23,7 +23,7 @@ docker network create ccnetwork
2323
You can start new Command Central server by running the container:
2424

2525
```bash
26-
docker run --name cc -d -p 8091 --network ccnetwork store/softwareag/commandcentral:10.1.0.1-server
26+
docker run --name cc -d -p 8091 --network ccnetwork store/softwareag/commandcentral:10.1-server
2727
```
2828

2929
Run ```docker port cc``` command to find out its published port
@@ -61,7 +61,7 @@ For development or testing purposes you can launch an empty Software AG managed
6161
Run Command Central node container on the 'ccnetwork' network:
6262

6363
```bash
64-
docker run --name n1 -d -P --network ccnetwork store/softwareag/commandcentral:10.1.0.1-node
64+
docker run --name n1 -d -P --network ccnetwork store/softwareag/commandcentral:10.1-node
6565
```
6666

6767
By default node container will auto register itself with Command Central using
@@ -76,7 +76,7 @@ You tune up certain aspects of Command Central by modifying its configuration fi
7676
For example, you can optimize your local template development or CI process by instructing Command Central to skip restart of runtimes at the end of composite template application.
7777

7878
```dockerfile
79-
FROM store/softwareag/commandcentral:10.1.0.1-server
79+
FROM store/softwareag/commandcentral:10.1-server
8080
# skip runtimes restart
8181
RUN echo com.softwareag.platform.management.client.template.composite.skip.restart.runtimes=true>>$SAG_HOME/profiles/CCE/configuration/config.ini
8282
```
@@ -133,7 +133,7 @@ Please see [Command Central](https://github.com/SoftwareAG/sagdevops-cc-server)
133133
## Building Docker images using Command Central Builder
134134

135135
You can build custom images with Software AG software using
136-
softwareag/commandcentral:10.1.0.1-builder image and Command Central templates.
136+
softwareag/commandcentral:10.1-builder image and Command Central templates.
137137

138138
Please see [Command Central Docker builder](https://github.com/SoftwareAG/sagdevops-cc-docker-builder) project.
139139

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ version: "3"
22

33
services:
44
cc:
5-
image: store/softwareag/commandcentral:10.1.0.1-server
5+
image: store/softwareag/commandcentral:10.1-server
66
ports:
77
- "8090:8090"
88
- "8091:8091"
99
environment:
1010
- CC_PASSWORD
1111

1212
test1:
13-
image: store/softwareag/commandcentral:10.1.0.1-node
13+
image: store/softwareag/commandcentral:10.1-node
1414
ports:
1515
- "5555:5555" # IS
1616
- "9000:9000" # UM
@@ -22,14 +22,14 @@ services:
2222
- cc
2323

2424
test2:
25-
image: store/softwareag/commandcentral:10.1.0.1-node
25+
image: store/softwareag/commandcentral:10.1-node
2626
environment:
2727
- CC_AUTO_REGISTER=0 # no auto-registration
2828
depends_on:
2929
- cc
3030

3131
init:
32-
image: store/softwareag/commandcentral:10.1.0.1-server
32+
image: store/softwareag/commandcentral:10.1-server
3333
environment:
3434
- CC_SERVER=cc
3535
command: # any client command againt a remote server

0 commit comments

Comments
 (0)