Skip to content

Commit

Permalink
fix: docker-compose.yaml image instead of build (#274)
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Reining <[email protected]>
  • Loading branch information
lukas-reining authored Jan 22, 2024
1 parent 919102d commit 2fc3ccb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
version: '3.8'
services:
demo:
# image: ghcr.io/open-feature/playground-app:v0.13.4 # x-release-please-version
build:
dockerfile: ./packages/app/Dockerfile
context: .
image: ghcr.io/open-feature/playground-app:v0.13.4 # x-release-please-version
# build:
# dockerfile: ./packages/app/Dockerfile
# context: .
ports:
- '30000:30000'
command:
Expand Down Expand Up @@ -46,10 +46,10 @@ services:
- FLAGD_TLS_WEB

fib-service:
# image: ghcr.io/open-feature/playground-fib-service:v0.13.4 # x-release-please-version
build:
dockerfile: ./packages/fibonacci-service/Dockerfile
context: .
image: ghcr.io/open-feature/playground-fib-service:v0.13.4 # x-release-please-version
# build:
# dockerfile: ./packages/fibonacci-service/Dockerfile
# context: .
expose:
- '30001'
environment:
Expand Down

0 comments on commit 2fc3ccb

Please sign in to comment.