-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (38 loc) · 899 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (38 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
version: "3.9"
services:
registry:
build:
context: .
dockerfile: apps/registry-server/Dockerfile
ports:
- "3000:3000"
environment:
DATABASE_URL: /app/data/registry.db
PORT: 3000
volumes:
- registry-data:/app/data
wallet-pwa:
build:
context: .
dockerfile: apps/wallet-pwa/Dockerfile
ports:
- "5173:5173"
environment:
VITE_REGISTRY_URL: http://registry:3000
verifier-demo:
build:
context: .
dockerfile: apps/verifier-demo/Dockerfile
ports:
- "5174:5174"
- "5050:5050"
environment:
VITE_VERIFIER_ORIGIN: http://localhost:5174
VITE_REGISTRY_URL: http://registry:3000
VITE_BACKEND_URL: http://localhost:5050
VERIFIER_ORIGIN: http://localhost:5174
REGISTRY_URL: http://registry:3000
depends_on:
- registry
volumes:
registry-data: