Skip to content

Commit

Permalink
Fix error in docker pull
Browse files Browse the repository at this point in the history
```
  /usr/bin/docker pull deepdiver/docker-oracle-xe-11g
  Using default tag: latest
  latest: Pulling from deepdiver/docker-oracle-xe-11g
  [DEPRECATION NOTICE] Docker Image Format v1 and Docker Image manifest version 2, schema 1 support is disabled by default and will be removed in an upcoming release. Suggest the author of docker.io/deepdiver/docker-oracle-xe-11g:latest to upgrade the image to the OCI Format or Docker Image manifest v2, schema 2. More information at https://docs.docker.com/go/deprecated-image-specs/
```

https://github.com/sue445/plant_erd/actions/runs/9919460884/job/27405298561?pr=251
  • Loading branch information
sue445 committed Jul 13, 2024
1 parent f7849dd commit b6fd56a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:

services:
oracle:
image: deepdiver/docker-oracle-xe-11g
image: deepdiver/docker-oracle-xe-11g:2.0
ports:
- 1521
env:
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
POSTGRES_PASSWORD: postgres

oracle:
image: deepdiver/docker-oracle-xe-11g
image: deepdiver/docker-oracle-xe-11g:2.0
ports:
- 1521
env:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ services:
POSTGRES_PASSWORD: postgres

oracle:
image: deepdiver/docker-oracle-xe-11g
image: deepdiver/docker-oracle-xe-11g:2.0

ports:
- 1521:1521
Expand Down

0 comments on commit b6fd56a

Please sign in to comment.