forked from IntersectMBO/cardano-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (33 loc) · 746 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (33 loc) · 746 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
34
35
36
version: "3.5"
services:
cardano-node:
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.33.0}
environment:
- NETWORK=${NETWORK:-mainnet}
volumes:
- node-db:/data/db
- node-ipc:/ipc
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
cardano-submit-api:
image: inputoutput/cardano-submit-api:${CARDANO_SUBMIT_API_VERSION:-1.33.0}
environment:
- NETWORK=${NETWORK:-mainnet}
depends_on:
- cardano-node
volumes:
- node-ipc:/node-ipc
ports:
- 8090:8090
restart: on-failure
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
volumes:
node-db:
node-ipc: