Skip to content

Commit de342ef

Browse files
Pogrebnyak, SergeiPogrebnyak, Sergei
authored andcommitted
Official docker store images
1 parent 3ebdc5e commit de342ef

File tree

2 files changed

+26
-20
lines changed

2 files changed

+26
-20
lines changed

README.md

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,29 @@
11
# Command Central Docker images
22

3+
## Configuration
4+
5+
Login to Docker Store with your Docker ID, open https://store.docker.com/images/softwareag-commandcentral and accept license agreement to get access
6+
to Command Central images.
7+
8+
Login to Docker with your Docker ID from your console and verify you can download the images:
9+
10+
```bash
11+
docker login
12+
docker pull store/softwareag/commandcentral:10.1.0.1-server
13+
```
14+
315
## Starting a default Command Central server
416

17+
Create a Docker network for the components to communicate
18+
19+
```bash
20+
docker network create ccnetwork
21+
```
22+
523
You can start new Command Central server by running the container:
624

725
```bash
8-
docker run --name cc -d -p 8091 softwareag/commandcentral:10.1.0.1-server
26+
docker run --name cc -d -p 8091 --network ccnetwork softwareag/commandcentral:10.1.0.1-server
927
```
1028

1129
Run ```docker port cc``` command to find out its published port
@@ -40,25 +58,15 @@ Command Central Web UI will show this managed node under Installations tab with
4058

4159
For development or testing purposes you can launch an empty Software AG managed installation.
4260

43-
Run Command Central node container with a link to 'cc' container
61+
Run Command Central node container on the 'ccnetwork' network:
4462

4563
```bash
46-
docker run --name n1 -d -P --link cc softwareag/commandcentral:10.1.0.1-node
64+
docker run --name n1 -d -P --network ccnetwork softwareag/commandcentral:10.1.0.1-node
4765
```
4866

4967
By default node container will auto register itself with Command Central using
5068
container's internal id.
5169

52-
Command Central Web UI will show this new node under Installations but it will be OFFLINE (UnknownHostException) because Command Central container does not 'see' node container.
53-
54-
Connect both containers to the same network:
55-
56-
```bash
57-
docker network create ccnet
58-
docker network connect ccnet cc
59-
docker network connect ccnet n1
60-
```
61-
6270
After a minute or so the managed node status will change to green (ONLINE).
6371

6472
## Using docker-compose files for dev and test environments
@@ -100,8 +108,7 @@ Please see [Command Central](https://github.com/SoftwareAG/sagdevops-cc-server)
100108
## Building Docker images using Command Central Builder
101109

102110
You can build custom images with Software AG software using
103-
```softwareag/commandcentral:10.1.0.1-builder``` image and
104-
Command Central templates.
111+
softwareag/commandcentral:10.1.0.1-builder image and Command Central templates.
105112

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

@@ -110,4 +117,3 @@ Contact us at [TECHcommunity](mailto:technologycommunity@softwareag.com?subject=
110117
_______________
111118
DISCLAIMER
112119
These tools are provided as-is and without warranty or support. They do not constitute part of the Software AG product suite. Users are free to use, fork and modify them, subject to the license agreement. While Software AG welcomes contributions, we cannot guarantee to include every contribution in the master project.
113-

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: softwareag/commandcentral:10.1.0.1-server
5+
image: store/softwareag/commandcentral:10.1.0.1-server
66
ports:
77
- "8090:8090"
88
- "8091:8091"
99
environment:
1010
- CC_PASSWORD
1111

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

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

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

0 commit comments

Comments
 (0)