mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
3d00af7fa3
- Replace command line flags with `-c` config flag. Part of #1180 - Convert node config private keys to hex-encoded string versions. - Remove `GenerateConfig` from library. - Remove unused `FirebaseConfig` from library. - Fix loading of `config/status-chain-genesis.json` in non-dev machines.
39 lines
778 B
YAML
39 lines
778 B
YAML
version: "3"
|
|
services:
|
|
bootnode:
|
|
image: ethereum/client-go:alltools-latest
|
|
entrypoint: bootnode
|
|
command: -addr=:30303 -nodekey /static/keys/bootnode.key
|
|
ports:
|
|
- 30303
|
|
volumes:
|
|
- ./../../../static/keys:/static/keys:ro
|
|
networks:
|
|
cluster:
|
|
ipv4_address: 172.16.238.10
|
|
|
|
wnode:
|
|
image: statusteam/status-go:latest
|
|
command:
|
|
- "-c"
|
|
- "/config/wnode-config.json"
|
|
ports:
|
|
- 8080
|
|
- 8545
|
|
- 30303
|
|
networks:
|
|
cluster:
|
|
volumes:
|
|
- ./wnode-config.json:/config/wnode-config.json:ro
|
|
- ./.ethereumtest:/data/ethereumtest/:rw
|
|
depends_on:
|
|
- bootnode
|
|
|
|
networks:
|
|
cluster:
|
|
driver: overlay
|
|
ipam:
|
|
driver: default
|
|
config:
|
|
- subnet: 172.16.238.0/24
|