-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (42 loc) · 1.85 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
version: "3"
services:
raiden1:
image: ${RAIDEN_NODE_VERSION:-raidennetwork/raiden:v1.2.0}
container_name: raiden1
restart: unless-stopped
command: --address "${NODE1_ETH_ADDRESS}" --keystore-path /raiden/keystore --password-file /raiden/password.txt --eth-rpc-endpoint "${ETH_RPC_ENDPIONT}" --network-id goerli --environment-type development --api-address "0.0.0.0:5001" --pathfinding-service-address "https://pfs-goerli.services-dev.raiden.network" --accept-disclaimer
ports:
- "5001:5001"
volumes:
- ./raiden-node/:/raiden
- raiden1Data:/root/.raiden
networks:
- default
raiden2:
image: ${RAIDEN_NODE_VERSION:-raidennetwork/raiden:v1.2.0}
container_name: raiden2
restart: unless-stopped
command: --address "${NODE2_ETH_ADDRESS}" --keystore-path /raiden/keystore --password-file /raiden/password.txt --eth-rpc-endpoint "${ETH_RPC_ENDPIONT}" --network-id goerli --environment-type development --api-address "0.0.0.0:5001" --pathfinding-service-address "https://pfs-goerli.services-dev.raiden.network" --accept-disclaimer
ports:
- "5002:5001"
volumes:
- ./raiden-node/:/raiden
- raiden2Data:/root/.raiden
networks:
- default
raiden3:
image: ${RAIDEN_NODE_VERSION:-raidennetwork/raiden:v1.2.0}
container_name: raiden3
restart: unless-stopped
command: --address "${NODE3_ETH_ADDRESS}" --keystore-path /raiden/keystore --password-file /raiden/password.txt --eth-rpc-endpoint "${ETH_RPC_ENDPIONT}" --network-id goerli --environment-type development --api-address "0.0.0.0:5001" --pathfinding-service-address "https://pfs-goerli.services-dev.raiden.network" --accept-disclaimer
ports:
- "5003:5001"
volumes:
- ./raiden-node/:/raiden
- raiden3Data:/root/.raiden
networks:
- default
volumes:
raiden1Data:
raiden2Data:
raiden3Data: