File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 50
50
- name : ' Start Identity Hub'
51
51
run : |
52
52
docker run -d --rm --name identityhub \
53
- -e "EDC_IH_IAM_ID=did:web:test" \
54
53
-e "WEB_HTTP_IDENTITY_PORT=8182" \
55
54
-e "WEB_HTTP_IDENTITY_PATH=/api/identity" \
56
55
-e "WEB_HTTP_PRESENTATION_PORT=10001" \
77
76
- name : ' Build Docker image'
78
77
run : docker build -t issuer-service ./launcher/issuer-service
79
78
80
- - name : ' Start Identity Hub '
79
+ - name : ' Start Issuer Service '
81
80
run : |
82
81
docker run -d --rm --name issuer-service \
83
82
-e "EDC_IH_IAM_ID=did:web:issuer" \
Original file line number Diff line number Diff line change @@ -82,14 +82,14 @@ docker build -t identity-hub ./launcher/identityhub
82
82
### Start the Identity Hub
83
83
84
84
``` 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 \
90
86
-e " WEB_HTTP_IDENTITY_PORT=8182" \
91
87
-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
93
93
```
94
94
95
95
## Architectural concepts of IdentityHub
You can’t perform that action at this time.
0 commit comments