status-go/_assets/compose/wnode-test-cluster/docker-compose.yml

44 lines
979 B
YAML
Raw Normal View History

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
volumes:
- ./../../../static/keys:/static/keys:ro
networks:
cluster:
ipv4_address: 172.16.238.10
wnode:
image: status-go:latest
2018-02-13 13:02:22 +00:00
command:
- statusd
- "-les=false"
- "-shh"
- "-listenaddr=:30303"
- "-discovery=true"
- "-standalone=false"
- "-bootnodes=enode://3f04db09bedc8d85a198de94c84da73aa7782fafc61b28c525ec5cca5a6cc16be7ebbb5cd001780f71d8408d35a2f6326faa1e524d9d8875294172ebec988743@172.16.238.10:30303"
- "-http"
- "-httphost=0.0.0.0"
- "-log=DEBUG"
ports:
- 8080
- 8545
2018-02-13 13:02:22 +00:00
- 30303
networks:
cluster:
depends_on:
- bootnode
networks:
cluster:
driver: overlay
ipam:
driver: default
config:
- subnet: 172.16.238.0/24