mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-30 16:43:46 +00:00
43 lines
2 KiB
Makefile
43 lines
2 KiB
Makefile
# Prod targets ref the amd agent image for this commit:
|
|
# https://github.com/hyperlane-xyz/hyperlane-monorepo/commit/69850642365251e16b9f23b87d6caf187036b3ee
|
|
|
|
up-prod:
|
|
@if [ ! -f .env ]; then echo "Error: .env file not found. Please populate the .env file before running this command."; exit 1; fi
|
|
DD_KEY=nil docker compose --profile settlement up -d --build
|
|
|
|
up-dev:
|
|
@if [ ! -f .env ]; then echo "Error: .env file not found. Please populate the .env file before running this command."; exit 1; fi
|
|
DD_KEY=nil docker compose --profile settlement up -d --build
|
|
|
|
up-dev-keystore:
|
|
@if [ ! -f .env ]; then echo "Error: .env file not found. Please populate the .env file before running this command."; exit 1; fi
|
|
DD_KEY=nil docker compose --profile settlement-keystore up -d --build
|
|
|
|
up-dev-local-l1:
|
|
@if [ ! -f .env ]; then echo "Error: .env file not found. Please populate the .env file before running this command."; exit 1; fi
|
|
DD_KEY=nil docker compose --profile settlement --profile local_l1 up -d
|
|
|
|
down:
|
|
docker compose --profile settlement --profile settlement-keystore --profile prod_agents --profile local_l1 down
|
|
|
|
clean-dbs:
|
|
@read -p "WARNING: This command will wipe all persistent disk data relevant to the containers. Press enter to continue or Ctrl+C to cancel." _
|
|
-docker compose --profile settlement --profile local_l1 --profile settlement-keystore down --rmi all --volumes
|
|
-docker compose --profile settlement --profile local_l1 --profile settlement-keystore rm -fv
|
|
docker image prune -f
|
|
|
|
pull-image:
|
|
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
|
|
|
|
deploy-create2:
|
|
@echo "Deploying create2 deployment proxy..."
|
|
./util/deploy_create2.sh "http://localhost:8545"
|