Skip to content

Commit

Permalink
fix: docker compose file
Browse files Browse the repository at this point in the history
Signed-off-by: Mirko Mollik <mirko.mollik@fit.fraunhofer.de>
  • Loading branch information
cre8 committed Apr 15, 2024
1 parent 7ecc286 commit 45d73b6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
4 changes: 4 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ services:
issuer:
image: ghcr.io/cre8/wallet/issuer
build:
context: .
dockerfile: docker/node.Dockerfile
args:
- PROJECT=issuer
Expand All @@ -78,6 +79,7 @@ services:
verifier:
image: ghcr.io/cre8/wallet/verifier
build:
context: .
dockerfile: docker/node.Dockerfile
args:
- PROJECT=verifier
Expand All @@ -91,6 +93,7 @@ services:
env_file:
- .env
build:
context: .
dockerfile: docker/node.Dockerfile
args:
- PROJECT=backend
Expand All @@ -100,6 +103,7 @@ services:
holder:
image: ghcr.io/cre8/wallet/holder
build:
context: .
dockerfile: docker/browser.Dockerfile
args:
- SUB_PROJECT=pwa
Expand Down

0 comments on commit 45d73b6

Please sign in to comment.