This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
86 lines (79 loc) · 2.13 KB
/
docker-compose.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
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
version: '3'
services:
# Our redis instance shared between all of the nodes
ilp-redis:
image: "redis:rc-alpine"
hostname: "ilp-redis"
container_name: "ilp-redis"
networks:
- interledger
# Xochitl's ILP node
ilp-xochitl-node:
image: "interledgerrs/ilp-node"
hostname: "ilp-xochitl-node"
container_name: "ilp-xochitl-node"
command: /root/config.yml
depends_on:
- ilp-redis
networks:
- interledger
volumes:
- ./interledger/xochitl/config.yml:/root/config.yml:ro
# Xochitl's Ethereum settlement engine
ilp-xochitl-eth:
image: "interledgerrs/ilp-settlement-ethereum"
hostname: "ilp-xochitl-eth"
container_name: "ilp-xochitl-eth"
command: /root/config-eth.yml
depends_on:
- ilp-redis
networks:
- interledger
- ethereum
volumes:
- ./interledger/xochitl/config-eth.yml:/root/config-eth.yml:ro
# Cuauhtli's ILP node
ilp-cuauhtli-node:
image: "interledgerrs/ilp-node"
hostname: "ilp-cuauhtli-node"
container_name: "ilp-cuauhtli-node"
command: /root/config.yml
depends_on:
- ilp-redis
networks:
- interledger
volumes:
- ./interledger/cuauhtli/config.yml:/root/config.yml:ro
# Cuauhtli's Ethereum settlement engine
ilp-cuauhtli-eth:
image: "interledgerrs/ilp-settlement-ethereum"
hostname: "ilp-cuauhtli-eth"
container_name: "ilp-cuauhtli-eth"
command: /root/config-eth.yml
depends_on:
- ilp-redis
networks:
- interledger
- ethereum
volumes:
- ./interledger/cuauhtli/config-eth.yml:/root/config-eth.yml:ro
# Cuetzpalli's ILP node (this is for later)
# ilp-cuetzpalli-node:
# image: "interledgerrs/ilp-node"
# hostname: "ilp-cuetzpalli"
# container_name: "ilp-cuetzpalli"
# command: /root/config.yml
# depends_on:
# - ilp-redis
# networks:
# - interledger
# volumes:
# - ./interledger/cuetzpalli/config.yml:/root/config.yml:ro
networks:
# Use the externally created networks for more flexibility
interledger:
external:
name: ilp-test-net
ethereum:
external:
name: eth-test-net