2018-01-30 11:51:48 +00:00
|
|
|
version: "3"
|
|
|
|
services:
|
|
|
|
bootnode:
|
|
|
|
image: ethereum/client-go:alltools-latest
|
|
|
|
entrypoint: bootnode
|
|
|
|
command: -addr=:30303 -nodekey /static/keys/bootnode.key
|
2018-02-13 13:02:22 +00:00
|
|
|
ports:
|
|
|
|
- 30303
|
2018-01-30 11:51:48 +00:00
|
|
|
volumes:
|
2018-02-12 16:57:19 +00:00
|
|
|
- ./../../../static/keys:/static/keys:ro
|
2018-01-30 11:51:48 +00:00
|
|
|
networks:
|
|
|
|
cluster:
|
|
|
|
ipv4_address: 172.16.238.10
|
|
|
|
|
|
|
|
wnode:
|
2018-09-13 16:31:29 +00:00
|
|
|
image: statusteam/status-go:latest
|
2018-02-13 13:02:22 +00:00
|
|
|
command:
|
2018-09-13 16:31:29 +00:00
|
|
|
- "-c"
|
|
|
|
- "/config/wnode-config.json"
|
2018-01-30 11:51:48 +00:00
|
|
|
ports:
|
|
|
|
- 8080
|
|
|
|
- 8545
|
2018-02-13 13:02:22 +00:00
|
|
|
- 30303
|
2018-01-30 11:51:48 +00:00
|
|
|
networks:
|
|
|
|
cluster:
|
2018-09-13 16:31:29 +00:00
|
|
|
volumes:
|
|
|
|
- ./wnode-config.json:/config/wnode-config.json:ro
|
|
|
|
- ./.ethereumtest:/data/ethereumtest/:rw
|
2018-01-30 11:51:48 +00:00
|
|
|
depends_on:
|
|
|
|
- bootnode
|
|
|
|
|
|
|
|
networks:
|
|
|
|
cluster:
|
|
|
|
driver: overlay
|
|
|
|
ipam:
|
|
|
|
driver: default
|
|
|
|
config:
|
|
|
|
- subnet: 172.16.238.0/24
|