Skip to content

Commit

Permalink
cluster: use latest staged images
Browse files Browse the repository at this point in the history
ad991b7 disabled image pull because that pointed to release
images and often times they had conflicts with local files
in the repository.

As we now have staged images published on merge, we can try
pulling images without forcing local builds (or local .yml
editing).

Also, Compose warns about 'version' being obsolete so drop
that too, while we're at it.

Signed-off-by: Mikko Ylinen <[email protected]>
  • Loading branch information
mythi authored and mkulke committed Dec 13, 2024
1 parent 28698a9 commit d9c6749
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
version: '3.2'
services:
kbs:
build:
context: .
dockerfile: kbs/docker/coco-as-grpc/Dockerfile
#image: ghcr.io/confidential-containers/key-broker-service:latest
image: ghcr.io/confidential-containers/staged-images/kbs-grpc-as:latest
command: [
"/usr/local/bin/kbs",
"--config-file",
Expand All @@ -24,7 +23,7 @@ services:
build:
context: .
dockerfile: attestation-service/docker/as-grpc/Dockerfile
#image: ghcr.io/confidential-containers/attestation-service:latest
image: ghcr.io/confidential-containers/staged-images/coco-as-grpc:latest
ports:
- "50004:50004"
restart: always
Expand All @@ -43,10 +42,10 @@ services:
- rvps

rvps:
#image: ghcr.io/confidential-containers/reference-value-provider-service:latest
build:
context: .
dockerfile: rvps/docker/Dockerfile
image: ghcr.io/confidential-containers/staged-images/rvps:latest
restart: always # keep the server running
ports:
- "50003:50003"
Expand Down

0 comments on commit d9c6749

Please sign in to comment.