github.com/status-im/status-go@v1.1.0/_assets/compose/wnode-test-cluster/docker-compose.yml (about) 1 version: "3" 2 services: 3 bootnode: 4 image: ethereum/client-go:alltools-latest 5 entrypoint: bootnode 6 command: -addr=:30303 -nodekey /static/keys/bootnode.key 7 ports: 8 - 30303 9 volumes: 10 - ./../../../static/keys:/static/keys:ro 11 networks: 12 cluster: 13 ipv4_address: 172.16.238.10 14 15 wnode: 16 image: statusteam/status-go:latest 17 command: 18 - "-c" 19 - "/config/wnode-config.json" 20 ports: 21 - 8080 22 - 8545 23 - 30303 24 networks: 25 cluster: 26 volumes: 27 - ./wnode-config.json:/config/wnode-config.json:ro 28 - ./.ethereumtest:/data/ethereumtest/:rw 29 depends_on: 30 - bootnode 31 32 networks: 33 cluster: 34 driver: overlay 35 ipam: 36 driver: default 37 config: 38 - subnet: 172.16.238.0/24