Skip to content

Commit

Permalink
Fix renamed projects in Readme and action
Browse files Browse the repository at this point in the history
  • Loading branch information
waltkb committed Dec 14, 2023
1 parent 29bfd6f commit 3af12e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ jobs:
with:
push: true
file: waltid-issuer-api/Dockerfile
tags: waltid/issuer:latest, waltid/issuer:${{ env.release_version }}
tags: waltid/issuer-api:latest, waltid/issuer-api:${{ env.release_version }}
- name: Build and push Docker images (verifier)
uses: docker/build-push-action@v4.0.0
with:
push: true
file: waltid-verifier-api/Dockerfile
tags: waltid/verifier:latest, waltid/verifier:${{ env.release_version }}
tags: waltid/verifier-api:latest, waltid/verifier-api:${{ env.release_version }}

- name: Build and push Docker images (wallet-backend)
uses: docker/build-push-action@v4.0.0
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ A set of white-label apps to get started in no time.
### Docker container builds:

```shell
docker build -t waltid/issuer -f waltid-issuer-api/Dockerfile .
docker run -p 7000:7000 waltid/issuer --webHost=0.0.0.0 --webPort=7000 --baseUrl=http://localhost:7000
docker build -t waltid/issuer-api -f waltid-issuer-api/Dockerfile .
docker run -p 7000:7000 waltid/issuer-api --webHost=0.0.0.0 --webPort=7000 --baseUrl=http://localhost:7000
```

```shell
docker build -t waltid/verifier -f waltid-verifier-api/Dockerfile .
docker run -p 7001:7001 waltid/verifier --webHost=0.0.0.0 --webPort=7001 --baseUrl=http://localhost:7001
docker build -t waltid/verifier-api -f waltid-verifier-api/Dockerfile .
docker run -p 7001:7001 waltid/verifier-api --webHost=0.0.0.0 --webPort=7001 --baseUrl=http://localhost:7001
```


Expand Down

0 comments on commit 3af12e9

Please sign in to comment.