-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (33 loc) · 981 Bytes
/
docker-compose.yml
File metadata and controls
35 lines (33 loc) · 981 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
33
version: "3.9"
volumes:
node-ipc:
node-db:
services:
cardano-node:
image: ghcr.io/intersectmbo/cardano-node:${CARDANO_NODE_VERSION:-10.6.2}
environment:
NETWORK: ${NETWORK:-preprod}
volumes:
- node-db:/data/db
- node-ipc:/ipc
logging:
driver: "json-file"
options:
max-size: "2M"
max-file: "10"
kuber:
image: ghcr.io/dquadrant/kuber:${KUBER_VERSION:-v4}
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/preview/ for NETWORK=preview or set CARDANO_NODE_SOCKET_PATH explicitly
# -node-ipc:/root/.cardano/sancho/ for NETWORK=sancho or set CARDANO_NODE_SOCKET_PATH explicitly
ports:
- 8081:8081
logging:
driver: "json-file"
options:
max-size: "2M"
max-file: "10"