Skip to content

Commit 03b6df5

Browse files
Pogrebnyak, SergeiPogrebnyak, Sergei
authored andcommitted
Optimized containers startup
1 parent 7314d4c commit 03b6df5

File tree

2 files changed

+11
-16
lines changed

2 files changed

+11
-16
lines changed

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Command Central Docker Builder
22

3-
[![Build Status](https://travis-ci.org/SoftwareAG/sagdevops-cc-docker-builder.svg?branch=master)](https://travis-ci.org/SoftwareAG/sagdevops-cc-docker-builder)
4-
53
This project demonstrates how to build Docker images using
64
Command Central Docker Builder.
75

@@ -205,20 +203,21 @@ Open Command Central Web UI Installations and Instances tabs and notice
205203
this Integration Server runtime instance is automatialy discovered and registred
206204
within Command Central managed landscape.
207205

208-
> You may need to click refresh icon to speed up the auto-update process
206+
Within Command Central Web UI you can:
207+
208+
* View Integration Server container runtime status and monitoring KPIs
209+
* View and dowload logs
210+
* Administer triggers
211+
* View configuration
209212

210-
You can view its status, monitoring KPIs, logs, configuration, fix levels, etc.
211-
Everything you can do with Integration Server running on a VM.
213+
Using Command Central API and CLI:
212214

213-
You can even run simple smoke tests against managed containers using Command Central API
214-
to verify successful setup:
215+
* You can run simple smoke tests to verify successful setup. See 'test' container command in docker-compose.yml for details.
215216

216217
```bash
217218
docker-compose run --rm test
218219
```
219220

220-
> See 'test' container command in docker-compose.yml for details.
221-
222221
Congratulations!
223222

224223
You can now build managed and unmanaged Docker images for Software AG products using

docker-compose.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ services:
2929
- "5552:5555"
3030
# volumes:
3131
# - ./licenseKey.xml:/opt/softwareag/IntegrationServer/instances/default/config/licenseKey.xml
32-
depends_on:
33-
- simple
34-
32+
3533
managed:
3634
image: managed/msc:$RELEASE
3735
build:
@@ -49,8 +47,6 @@ services:
4947
# - ./licenseKey.xml:/opt/softwareag/IntegrationServer/instances/default/config/licenseKey.xml
5048
links:
5149
- cc
52-
depends_on:
53-
- unmanaged
5450

5551
cc:
5652
image: store/softwareag/commandcentral:$RELEASE-server
@@ -77,7 +73,7 @@ services:
7773
echo "Checking managed container auto registration ..." &&
7874
sagcc list landscape nodes properties=alias,description -e "Auto registered docker node" &&
7975
echo "Checking MSC instance ..." &&
80-
sagcc list inventory components -e integrationServer-default &&
76+
sagcc list inventory components -e integrationServer-default -w 240 &&
8177
echo "Checking MSC state ..." &&
82-
sagcc list monitoring state -e "Response Time"
78+
sagcc list monitoring state -e "Response Time" -w 240
8379
'

0 commit comments

Comments
 (0)