-
-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathdocker-compose-chang.yml
More file actions
103 lines (90 loc) · 2.13 KB
/
docker-compose-chang.yml
File metadata and controls
103 lines (90 loc) · 2.13 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
version: "3.5"
networks:
cluster:
ipam:
config:
- subnet: 172.20.0.0/24
services:
cardano-node:
image: ghcr.io/intersectmbo/cardano-node:${CARDANO_NODE_VERSION:-10.1.4}
platform: linux/amd64
entrypoint: bash
environment:
NETWORK: "${NETWORK:-local-alonzo}"
CARDANO_NODE_SOCKET_PATH: "/ipc/node.socket"
command: /code/run_node.sh
networks:
cluster:
ipv4_address: 172.20.0.101
volumes:
- .:/code
- /tmp:/tmp
- node-db:/data/db
- node-ipc:/ipc
ports:
- ${BFT_NODE_PORT:-3000}:3000
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
cardano-pool:
image: ghcr.io/intersectmbo/cardano-node:${CARDANO_NODE_VERSION:-10.1.4}
platform: linux/amd64
entrypoint: bash
environment:
NETWORK: "${NETWORK:-local-alonzo}"
command: /code/run_pool.sh
networks:
cluster:
ipv4_address: 172.20.0.102
volumes:
- .:/code
- node-ipc:/ipc
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
ogmios:
image: cardanosolutions/ogmios:v6.11.2
platform: linux/amd64
environment:
NETWORK: "${NETWORK:-local-alonzo}"
command: [
"--host", "0.0.0.0",
"--node-socket", "/ipc/pool.socket",
"--node-config", "/code/configs/${NETWORK:-local-alonzo}/config.json",
"--log-level-websocket", "Debug"
]
volumes:
- .:/code
- node-ipc:/ipc
ports:
- ${OGMIOS_PORT:-1337}:1337
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
kupo:
image: cardanosolutions/kupo:v2.9.0
platform: linux/amd64
environment:
NETWORK: "${NETWORK:-local}"
command: [
"--node-socket", "/ipc/pool.socket",
"--node-config", "/code/configs/${NETWORK:-local-alonzo}/config.json",
"--host", "0.0.0.0",
"--since", "origin",
"--match", "*",
"--in-memory"
]
volumes:
- .:/code
- node-ipc:/ipc
ports:
- ${KUPO_PORT:-1442}:1442
volumes:
node-db:
node-ipc: