forked from uncefact/project-vckit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
56 lines (49 loc) · 1.14 KB
/
docker-compose.yaml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
version: '3.8'
services:
demo-explorer:
build:
context: .
dockerfile: packages/demo-explorer/Dockerfile
ports:
- 3000:80
restart: unless-stopped
env_file: ./packages/demo-explorer/.env
vckit-api:
build:
context: .
env_file:
- local.env
ports:
- 3332:3332
depends_on:
- db
db:
image: postgres:16-alpine
ports:
- 5432:5432
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=vckit
volumes:
- vckit-data:/var/lib/postgresql/data
restart: always
storage-service:
image: ghcr.io/uncefact/project-identity-resolver:sha-8aed15c@sha256:d768fbb395e39072a4d227ebea651346e5f27a74f0b4938e6676042095599f3b
ports:
- 3334:3334
environment:
- API_VERSION=v1
- PROTOCOL=http
- DOMAIN=localhost
- PORT=3334
- AVAILABLE_BUCKETS=verifiable-credentials,private-verifiable-credentials,epcis-events
- STORAGE_TYPE=local
vckit-documentation:
build:
context: .
dockerfile: documentation/Dockerfile
ports:
- 8081:80
volumes:
vckit-data: