You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The install-configs.sh script will set up the environment for your containers using the env files contained in the directories under `docker/compose/build`:
88
+
The install-configs.sh script will set up the environment for your containers using the .env.examples files from
89
+
packages/**src/.env.example and put them in the directories under `docker/compose/build`:
90
+
84
91
```
85
92
oid4vci-demo-frontend/.env.local
86
93
oid4vp-demo-frontend/.env.local
87
94
agent/.env.local
88
95
```
89
-
(The .env.local files are copied and patched from the packages/**/src/.env.example files)
90
96
91
-
Please ensure that you execute the script and docker compose commands with ./docker/compose/build as working directory and have correctly set up your environment
92
-
variables as outlined in the documentation for [Setting up the agent](./documents/agent-setup.md) and [Setting up the VCI frontend](./documents/vci-front-end.md).
97
+
(The .env.local files are copied and patched from the packages/**/src/.env.example files)
93
98
94
-
The current example for ecosystem "sphereon" loads the folder `packages/agent/conf/demos/sphereon` as your base configuration folder.
95
-
All ecosystems present in packages/agent/conf/demos can be installed using the install-configs.sh script.
99
+
Please ensure that you execute the script and docker compose commands with ./docker/compose/build as working directory
100
+
and have correctly set up your environment
101
+
variables as outlined in the documentation for [Setting up the agent](./documents/agent-setup.md)
102
+
and [Setting up the VCI frontend](./documents/vci-front-end.md).
96
103
104
+
The current example for ecosystem "sphereon" loads the folder `packages/agent/conf/demos/sphereon` as your base
105
+
configuration folder.
106
+
All ecosystems present in packages/agent/conf/demos can be installed using the install-configs.sh script.
97
107
98
108
To build and run the Docker containers, execute the following commands from within the respective directory:
109
+
99
110
```bash
100
111
docker compose build # This builds the Docker images
101
112
docker compose up -d # This starts the Docker containers, this will require the .env & config files to be installed
102
113
```
103
-
The building process may take a few minutes. Once you execute the docker compose up command, three services will start: ssi-agent, oid4vci-demo-frontend, and oid4vp-frontend.
104
114
105
-
You should now be able to go to http://localhost:5001 and http://localhost:5002 respectively to test the issuer and verifier demo's.
115
+
The building process may take a few minutes. Once you execute the docker compose up command, three services will start:
116
+
ssi-agent, oid4vci-demo-frontend, and oid4vp-frontend.
117
+
118
+
You should now be able to go to http://localhost:5001 and http://localhost:5002 respectively to test the issuer and
119
+
verifier demo's.
106
120
107
121
Please note that you might have to configure your docker environment to expose the host.docker.internal like the image
108
-
below. If you cannot make that work you could adjust the config/docker and docker/compose/build/**/.env* files to suit your needs.
122
+
below. If you cannot make that work you could adjust the config/docker and docker/compose/build/**/.env* files to suit
0 commit comments