Skip to content

Commit

Permalink
docker-compose: update image references
Browse files Browse the repository at this point in the history
Use images from ghcr.io and the tag `latest` to track
the latest versions of published images.

Signed-off-by: Xynnn007 <[email protected]>
  • Loading branch information
Xynnn007 authored and jialez0 committed Apr 13, 2023
1 parent 770abac commit ed8f1a4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
# build:
# context: .
# dockerfile: ./docker/Dockerfile.grpc-as
image: quay.io/confidential-containers/key-broker-service:v0.5.0-rc4
image: ghcr.io/confidential-containers/key-broker-service:latest
command: [
"/usr/local/bin/kbs",
"--socket",
Expand All @@ -24,7 +24,7 @@ services:
- ./config/kbs-config.json:/etc/kbs-config.json

as:
image: quay.io/confidential-containers/attestation-service:v0.5.0-tdx-rc1
image: ghcr.io/confidential-containers/attestation-service:latest
ports:
- "50004:50004"
restart: always
Expand All @@ -43,15 +43,15 @@ services:
]

rvps:
image: quay.io/confidential-containers/reference-value-provider-service:v0.5.0-rc0
image: ghcr.io/confidential-containers/reference-value-provider-service:latest
restart: always # keep the server running
ports:
- "50003:50003"
volumes:
- ./data/reference-values:/opt/confidential-containers/attestation-service/reference_values:rw

keyprovider:
image: quay.io/confidential-containers/coco-keyprovider:v0.5.0-rc3
image: ghcr.io/confidential-containers/coco-keyprovider:latest
restart: always
ports:
- "50000:50000"
Expand Down

0 comments on commit ed8f1a4

Please sign in to comment.