added kovan goerli rinkeby

This commit is contained in:
cventastic
2021-12-12 17:29:29 +01:00
parent eed71811d3
commit 8258a71865

View File

@@ -2,17 +2,41 @@ version: '3.1'
services: services:
# geth-rinkeby: geth-kovan:
# image: ethereum/client-go:latest image: parity/parity:latest
# expose: expose:
# - "8545" - "8545"
# - "8546" - "8546"
# - "30303" - "30303"
# volumes: volumes:
# - geth-rinkeby:/.rinkeby - geth-kpvan:/.kovan
# command: "--rinkeby --rpc --rpcapi eth,net --rpcaddr 0.0.0.0 --rpcport 8545 --rpcvhosts=* --syncmode fast --datadir .rinkeby --verbosity 3" command: "--kovan"
# networks: networks:
# - pocket - pocket
geth-goerli:
image: ethereum/client-go:latest
expose:
- "8545"
- "8546"
- "30303"
volumes:
- geth-goerli:/.goerli
command: "--goerli --http --http.api eth,net --http.addr 0.0.0.0 --http.port 8545 --http.vhosts=* --syncmode fast --datadir .goerli --verbosity 3"
networks:
- pocket
geth-rinkeby:
image: ethereum/client-go:latest
expose:
- "8545"
- "8546"
- "30303"
volumes:
- geth-rinkeby:/.rinkeby
command: "--rinkeby --http --http.api eth,net --http.addr 0.0.0.0 --http.port 8545 --http.vhosts=* --syncmode fast --datadir .rinkeby --verbosity 3"
networks:
- pocket
geth-mainnet: geth-mainnet:
image: ethereum/client-go:latest image: ethereum/client-go:latest
@@ -22,7 +46,7 @@ services:
- "30303" - "30303"
volumes: volumes:
- geth-mainnet:/.mainnet - geth-mainnet:/.mainnet
command: "--http --http.api personal,eth,net,web3 --http.addr 0.0.0.0 --http.port 8545 --http.vhosts=* --syncmode full --datadir .mainnet --verbosity 3" command: "--http --http.api eth,net --http.addr 0.0.0.0 --http.port 8545 --http.vhosts=* --syncmode full --datadir .mainnet --verbosity 3"
networks: networks:
- pocket - pocket
@@ -45,8 +69,10 @@ services:
- pocket - pocket
volumes: volumes:
geth-kovan:
geth-goerli:
geth-rinkeby:
geth-mainnet: geth-mainnet:
# geth-rinkeby:
pocket-data: pocket-data: