Skip to content

Commit 9dd2a2e

Browse files
Pogrebnyak, SergeiPogrebnyak, Sergei
authored andcommitted
Official images on docker store
1 parent 6595212 commit 9dd2a2e

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

Dockerfile.managed

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MUST start with builder image to run provisioning using template.yaml
22

3-
#FROM softwareag/commandcentral:10.1.0.1-builder as builder
3+
#FROM store/softwareag/commandcentral:10.1.0.1-builder as builder
44
FROM sagdevopsccdockerbuilder_simple as builder
55

66
# ADOPTED from docker file created by running /opt/softwareag/IntegrationServer/docker/is_container.sh createDockerfile

Dockerfile.simple

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# MUST start with builder image to provision using template.yaml
2-
FROM softwareag/commandcentral:10.1.0.1-builder as builder
2+
FROM store/softwareag/commandcentral:10.1.0.1-builder as builder
33

44
# this is default/lazy option for building images
55

Dockerfile.unmanaged

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# MUST start with builder image to run provisioning using template.yaml
2-
# FROM softwareag/commandcentral:10.1.0.1-builder as builder
2+
# FROM store/softwareag/commandcentral:10.1.0.1-builder as builder
33
FROM sagdevopsccdockerbuilder_simple as builder
44

55
# ADOPTED from docker file created by running /opt/softwareag/IntegrationServer/docker/is_container.sh createDockerfile

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,21 @@ Command Central Docker Builder.
66
## Overview
77

88
Command Central Docker Builder is an tool provided by Software AG
9-
on [Docker Store](https://store.docker.com/). It leverages Command Central templates to run
9+
on [Docker Store](https://store.docker.com/images/softwareag-commandcentral). It leverages Command Central templates to run
1010
provisioning operations during Docker image build, driven from a standard Dockerfile.
1111

1212
## Configuration
1313

14+
Login to Docker Store with your Docker ID, open https://store.docker.com/images/softwareag-commandcentral and accept license agreement to get access
15+
to Command Central images.
16+
17+
Login to Docker with your Docker ID from your console and verify you can download the images:
18+
19+
```bash
20+
docker login
21+
docker pull store/softwareag/commandcentral:10.1.0.1-server
22+
```
23+
1424
Modify [init.yaml](init.yaml) to configure product and fix repositories, poiting to Master 10.1 repostories on Empower using your Empower credentials or point to your local 10.1 mirrors
1525

1626
```yaml

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,21 +40,21 @@ services:
4040
- simple
4141

4242
cc:
43-
image: softwareag/commandcentral:10.1.0.1-server
43+
image: store/softwareag/commandcentral:10.1.0.1-server
4444
ports:
4545
- "8090:8090"
4646
- "8091:8091"
4747

4848
init:
49-
image: softwareag/commandcentral:10.1.0.1-server # -client-alpine
49+
image: store/softwareag/commandcentral:10.1.0.1-server # -client-alpine
5050
environment:
5151
- CC_SERVER=cc
5252
command: sagcc list landscape nodes local -e ONLINE -w 240
5353
links:
5454
- cc
5555

5656
test:
57-
image: softwareag/commandcentral:10.1.0.1-server # -client-alpine
57+
image: store/softwareag/commandcentral:10.1.0.1-server # -client-alpine
5858
environment:
5959
- CC_SERVER=cc
6060
command: sagcc list monitoring state -e integrationServer-default -w 240

0 commit comments

Comments
 (0)