-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.cardano.yml
51 lines (48 loc) · 1.16 KB
/
docker-compose.cardano.yml
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
version: "3.5"
services:
cardano-node:
image: inputoutput/cardano-node:1.35.4
environment:
NETWORK:
CARDANO_NODE_SOCKET_PATH: /ipc/node.socket
volumes:
- node-${NETWORK}-db:/data
- node-ipc:/ipc
restart: on-failure
logging:
driver: "json-file"
options:
compress: "true"
max-file: "10"
max-size: "50m"
cardano-wallet:
image: inputoutput/cardano-wallet:2022.12.14
volumes:
- wallet-${NETWORK}-db:/wallet-db
- node-ipc:/ipc
ports:
- 8090:8090
entrypoint: []
command: bash -c "
([[ $$NETWORK == \"mainnet\" ]] && $$CMD --mainnet) ||
($$CMD --testnet /config/${NETWORK}/genesis-byron.json)
"
environment:
CMD: "cardano-wallet serve --node-socket /ipc/node.socket --database /wallet-db --listen-address 0.0.0.0"
NETWORK:
restart: on-failure
logging:
driver: "json-file"
options:
compress: "true"
max-file: "10"
max-size: "50m"
volumes:
node-mainnet-db:
wallet-mainnet-db:
node-preprod-db:
wallet-preprod-db:
node-preview-db:
wallet-preview-db:
node-ipc:
node-config: