mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-16 17:03:46 +00:00
Update Makefile
This commit is contained in:
parent
d972c74f5e
commit
8a87924515
1 changed files with 9 additions and 0 deletions
|
|
@ -35,3 +35,12 @@ clean-dbs:
|
||||||
|
|
||||||
pull-image:
|
pull-image:
|
||||||
docker pull shaspitz/geth-poa:v0
|
docker pull shaspitz/geth-poa:v0
|
||||||
|
|
||||||
|
DOCKER_NETWORK_NAME="primev_net"
|
||||||
|
create-docker-network:
|
||||||
|
@echo "Creating Docker network: $(DOCKER_NETWORK_NAME)..."
|
||||||
|
@if ! docker network inspect $(DOCKER_NETWORK_NAME) >/dev/null 2>&1; then \
|
||||||
|
docker network create --driver bridge --subnet 172.29.0.0/16 $(DOCKER_NETWORK_NAME); \
|
||||||
|
else \
|
||||||
|
echo "Network $(DOCKER_NETWORK_NAME) already exists."; \
|
||||||
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue