Skip to content

Commit f4bfd69

Browse files
authored
Merge pull request #48 from phansys/ci
Update Docker image location for IBM DB2
2 parents 7d70cb6 + dd6bb6f commit f4bfd69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ jobs:
5959
- name: Download container
6060
if: steps.cache-docker.outputs.cache-hit != 'true'
6161
run: |
62-
docker pull ibmcom/db2
62+
docker pull icr.io/db2_community/db2:11.5.8.0
6363
mkdir image-cache
64-
docker save -o image-cache/db2.tar ibmcom/db2
64+
docker save -o image-cache/db2.tar icr.io/db2_community/db2:11.5.8.0
6565
- name: Restore container from cache
6666
if: steps.cache-docker.outputs.cache-hit == 'true'
6767
run: docker load -i image-cache/db2.tar
@@ -79,7 +79,7 @@ jobs:
7979
Database=sample
8080
EOF
8181
mkdir database
82-
docker run --name db2 --privileged=true -p 60000:50000 -e DB2INST1_PASSWORD=password -e LICENSE=accept -e DBNAME=sample -v database:/database -itd ibmcom/db2
82+
docker run --name db2 --privileged=true -p 60000:50000 -e DB2INST1_PASSWORD=password -e LICENSE=accept -e DBNAME=sample -v database:/database -itd icr.io/db2_community/db2:11.5.8.0
8383
docker ps -as
8484
while true
8585
do

0 commit comments

Comments
 (0)