Skip to content

Commit a4e50d6

Browse files
authored
Merge pull request #199 from ot4i/doms
Update docker file and instructions for image to use
2 parents d9a49bc + 5fee033 commit a4e50d6

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ RUN microdnf update && microdnf install util-linux curl tar
1515

1616
ARG USERNAME
1717
ARG PASSWORD
18-
ARG DOWNLOAD_URL=http://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/integration/12.0.4.0-ACE-LINUX64-DEVELOPER.tar.gz
18+
# Download and reference the ACE-LINUX64-DEVELOPER.tar.gz from here https://www.ibm.com/resources/mrs/assets?source=swg-wmbfd eg.
19+
ARG DOWNLOAD_URL=<Your downloaded location>/12.0.4.0-ACE-LINUX64-DEVELOPER.tar.gz
1920

2021
RUN mkdir -p /opt/ibm/ace-12 \
2122
&& if [ -z $USERNAME ]; then curl ${DOWNLOAD_URL}; else curl -u "${USERNAME}:${PASSWORD}" ${DOWNLOAD_URL}; fi | \

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,13 @@ i.e.
2929
docker build -t ace --build-arg USERNAME=<Username> --build-arg PASSWORD=<Password> --build-arg DOWNLOAD_URL=${DOWNLOAD_URL} --file ./Dockerfile .
3030
```
3131

32-
NOTE: If no DOWNLOAD_URL is provided the build will use a copy of the App Connect Enterprise developer edition as referenced in the Dockerfile
32+
### DOWNLOAD_URL
33+
34+
The link is likely to be of the form
35+
```
36+
https://iwm.dhe.ibm.com/sdfdl/v2/regs2/mbford/Xa.2/Xb.WJL1cUPI9gANEhP8GuPD_qX1rj6x5R4yTUM7s_C2ue8/Xc.12.0.10.0-ACE-LINUX64-DEVELOPER.tar.gz/Xd./Xf.LpR.D1vk/Xg.12164875/Xi.swg-wmbfd/XY.regsrvs/XZ.pPVETUejcqPsVfDVKbdNu6IRpo4TkyKu/12.0.10.0-ACE-LINUX64-DEVELOPER.tar.gz
37+
```
38+
Use this link as the DOWNLOAD_URL build parameter, adjusting the version numbers in the other files and parameters as needed.
3339

3440
### Running the image
3541

0 commit comments

Comments
 (0)