Skip to content

Commit

Permalink
docs: Docker build instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
philpotisk committed Dec 21, 2023
1 parent 3af64d7 commit 36c22ec
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ A set of API's to build issuer, verifier and wallet capabilities into any app.
A set of white-label apps to get started in no time.

- [Web-Wallet](https://github.com/walt-id/waltid-identity/tree/main/waltid-web-wallet) - A custodial web-wallet (PWA) solution for credentials and tokens.
- [Portal](https://github.com/walt-id/waltid-identity/tree/main/waltid-web-portal) - An issuer and verifier portal for credentials.
- [Portal](https://github.com/walt-id/waltid-identity/tree/main/waltid-web-portal) - An issuer and verifier portal for credentials, which are managed [here](https://github.com/walt-id/waltid-credentials).

## Use Services And Apps

Expand Down
2 changes: 1 addition & 1 deletion docker-compose/readme.md → docker-compose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ port mapping below

- Web Wallet: `3000`
- Web Portal: `4000`
- VC Repo: `5000`
- Credential Repo: `5000`


## Configurations
Expand Down
3 changes: 1 addition & 2 deletions waltid-web-portal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ pnpm build
Using Docker:

```bash
docker build . -t waltid/portal
docker push waltid/portal
docker build -t waltid/portal -f waltid-web-portal/Dockerfile .
docker run -p3000:3000 -i -t waltid/portal
```

Expand Down
5 changes: 5 additions & 0 deletions waltid-web-wallet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ cd docker-compose && docker compose up
- Visit the web wallet hosted under localhost:3000.
- Visit the wallet-api hosted under localhost:4545.

Update the containers by running the following commands from the root folder:
```bash
docker build -f waltid-web-wallet/backend.Dockerfile -t waltid/wallet-backend .
docker build -f waltid-web-wallet/frontend.Dockerfile -t waltid/wallet-frontend .
```

## What is the Web-Wallet?

Expand Down

0 comments on commit 36c22ec

Please sign in to comment.