You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a Docker network for the components to communicate
18
+
19
+
```bash
20
+
docker network create ccnetwork
21
+
```
22
+
5
23
You can start new Command Central server by running the container:
6
24
7
25
```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
9
27
```
10
28
11
29
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
40
58
41
59
For development or testing purposes you can launch an empty Software AG managed installation.
42
60
43
-
Run Command Central node container with a link to 'cc' container
61
+
Run Command Central node container on the 'ccnetwork' network:
44
62
45
63
```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
47
65
```
48
66
49
67
By default node container will auto register itself with Command Central using
50
68
container's internal id.
51
69
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
-
62
70
After a minute or so the managed node status will change to green (ONLINE).
63
71
64
72
## Using docker-compose files for dev and test environments
@@ -100,8 +108,7 @@ Please see [Command Central](https://github.com/SoftwareAG/sagdevops-cc-server)
100
108
## Building Docker images using Command Central Builder
101
109
102
110
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.
105
112
106
113
Please see [Command Central Docker builder](https://github.com/SoftwareAG/sagdevops-cc-docker-builder) project.
107
114
@@ -110,4 +117,3 @@ Contact us at [TECHcommunity](mailto:technologycommunity@softwareag.com?subject=
110
117
_______________
111
118
DISCLAIMER
112
119
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.
0 commit comments