Skip to content

Commit 59d9789

Browse files
fix: readme (#668)
1 parent 12e0f6f commit 59d9789

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/verify.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ jobs:
5050
- name: 'Start Identity Hub'
5151
run: |
5252
docker run -d --rm --name identityhub \
53-
-e "EDC_IH_IAM_ID=did:web:test" \
5453
-e "WEB_HTTP_IDENTITY_PORT=8182" \
5554
-e "WEB_HTTP_IDENTITY_PATH=/api/identity" \
5655
-e "WEB_HTTP_PRESENTATION_PORT=10001" \
@@ -77,7 +76,7 @@ jobs:
7776
- name: 'Build Docker image'
7877
run: docker build -t issuer-service ./launcher/issuer-service
7978

80-
- name: 'Start Identity Hub'
79+
- name: 'Start Issuer Service'
8180
run: |
8281
docker run -d --rm --name issuer-service \
8382
-e "EDC_IH_IAM_ID=did:web:issuer" \

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ docker build -t identity-hub ./launcher/identityhub
8282
### Start the Identity Hub
8383

8484
```bash
85-
docker run --rm --name identity-hub \
86-
-e "WEB_HTTP_PRESENTATION_PORT=10001" \
87-
-e "WEB_HTTP_PRESENTATION_PATH=/api/presentation/" \
88-
-e "WEB_HTTP_PATH=/api" \
89-
-e "WEB_HTTP_PORT=8181" \
85+
docker run -d --rm --name identityhub \
9086
-e "WEB_HTTP_IDENTITY_PORT=8182" \
9187
-e "WEB_HTTP_IDENTITY_PATH=/api/identity" \
92-
identity-hub:latest
88+
-e "WEB_HTTP_PRESENTATION_PORT=10001" \
89+
-e "WEB_HTTP_PRESENTATION_PATH=/api/presentation" \
90+
-e "EDC_IAM_STS_PRIVATEKEY_ALIAS=privatekey-alias" \
91+
-e "EDC_IAM_STS_PUBLICKEY_ID=publickey-id" \
92+
identityhub:latest
9393
```
9494

9595
## Architectural concepts of IdentityHub

0 commit comments

Comments
 (0)