-
Notifications
You must be signed in to change notification settings - Fork 11
/
docker-compose.yaml
48 lines (46 loc) · 1.1 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
services:
ogmios:
image: cardanosolutions/cardano-node-ogmios:v6.7.1_9.1.1-${NETWORK:-preview}
platform: linux/amd64
command: [
]
volumes:
# - ./cardano-configurations/network/${NETWORK:-preview}:/config
- node-ipc-${NETWORK:-preview}:/ipc
- node-db-${NETWORK:-preview}:/db
ports:
- ${OGMIOS_PORT:-1337}:1337
kupo:
depends_on:
- ogmios
profiles:
- kupo
image: cardanosolutions/kupo
command: [
"--node-socket", "/ipc/node.socket",
"--node-config", "/config/cardano-node/config.json",
"--host", "0.0.0.0",
"--port", "${KUPO_PORT:-1442}",
"--since", "origin",
"--prune-utxo",
"--workdir", "/db",
]
volumes:
- ./cardano-configurations/network/${NETWORK:-preview}:/config
- node-ipc-${NETWORK:-preview}:/ipc
- kupo-db-${NETWORK:-preview}:/db
ports:
- ${KUPO_PORT:-1442}:1442
volumes:
# mainnet
node-db-:
node-ipc-:
kupo-db-:
# preprod
node-db-preprod:
node-ipc-preprod:
kupo-db-preprod:
# preview
node-db-preview:
node-ipc-preview:
kupo-db-preview: