-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-devkit.yml
More file actions
70 lines (64 loc) · 1.71 KB
/
docker-compose-devkit.yml
File metadata and controls
70 lines (64 loc) · 1.71 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
services:
api:
restart: unless-stopped
build:
context: .
ports:
- "9000:9000"
environment:
- DB_URL=jdbc:postgresql://postgres-indexer:5433/postgres?currentSchema=indexer
- DB_USER=postgres
- DB_PASSWORD=postgres
- SPRING_PROFILES_ACTIVE=docker-devkit
- REEVE_SCRIPT_PATH=/app/plutus.json
- STORE_CARDANO_HOST=host.docker.internal
- KERI_ENABLED=${KERI_ENABLED:-false}
depends_on:
- postgres
frontend:
restart: unless-stopped
build:
context: frontend
ports:
- "3000:80"
environment:
PORT: "3000"
VITE_API_URL: http://localhost:9000
postgres:
restart: unless-stopped
image: postgres:17
hostname: postgres-indexer
environment:
- POSTGRES_DB=postgres
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
volumes:
- postgres-data:/var/lib/postgresql/data
ports:
- "15432:5432"
yaci-cli:
restart: unless-stopped
image: bloxbean/yaci-cli:0.10.6
env_file:
- ./yaci-config/env
- ./yaci-config/node.properties
volumes:
- ./yaci-config/node.properties:/app/config/node.properties
- yaci-data:/clusters
ports:
- "${YACI_DEVNET_EXPOSED_PORT:-3001}:3001"
- "8080:8080"
entrypoint: [ "/app/yaci-cli", "create-node", "-o", "--start" ]
yaci-viewer:
restart: unless-stopped
image: bloxbean/yaci-viewer:0.10.6
ports:
- "5173:5173"
env_file:
- ./yaci-config/env
environment:
PUBLIC_INDEXER_BASE_URL: ${PUBLIC_INDEXER_BASE_URL:-http://yaci-cli:8080/api/v1}
PUBLIC_INDEXER_WS_URL: ${PUBLIC_INDEXER_WS_URL:-ws://localhost:8080/ws/liveblocks}
volumes:
postgres-data:
yaci-data: