forked from dQuadrant/kuber
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (32 loc) · 870 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (32 loc) · 870 Bytes
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
version: "3.5"
volumes:
node-pic:
node-db:
services:
cardano-node:
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.35.3}
environment:
NETWORK: ${NETWORK:-preprod}
volumes:
- node-db:/data/db
- node-ipc:/ipc
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
kuber:
image: dquadrant/kuber:${KUBER_VERSION:-3.0.0-rc1}
environment:
NETWORK: ${NETWORK:- preprod}
volumes:
- node-ipc:/root/.cardano/preprod/
# -node-ipc:/root/.cardano/mainnet/ for NETWORK=mainnet or set CARDANO_NODE_SOCKET_PATH explicitly
# -node-ipc:/root/.cardano/review/ for NETWORK=preview or set CARDANO_NODE_SOCKET_PATH explicitly
ports:
- 8081:8081
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"