stack-orchestrator/stack_orchestrator/data/compose/docker-compose-mainnet-blast.yml

84 lines
2.3 KiB
YAML
Raw Normal View History

2024-03-04 22:05:31 +00:00
# From: https://raw.githubusercontent.com/blast-io/deployment/master/docker-compose.yml
services:
# generate jwt.txt if it's absent
generate-jwt:
image: blastio/openssl
volumes:
- blast-data:/blast:rw
command: >
sh -c "[ ! -f /blast/jwt.txt ] && openssl rand -hex 32 | tr -d '\n' > /blast/jwt.txt || exit 0"
# initialise geth db
geth-init:
image: blastio/blast-geth:${NETWORK:-mainnet}
volumes:
- blast-data:/blast:rw
entrypoint: /bin/sh
command: >
2024-03-06 19:34:25 +00:00
-c "[ ! -d /blast/${GETH_DATA_DIR:-blast-geth-data}/geth ] && /usr/local/bin/geth init --datadir=/blast/${GETH_DATA_DIR:-blast-geth-data} /blast/genesis.json || exit 0"
2024-03-04 22:05:31 +00:00
depends_on:
generate-jwt:
condition: service_completed_successfully
env_file:
2024-03-13 16:21:29 +00:00
- ../config/mainnet-blast/${NETWORK:-mainnet}.config
2024-03-04 22:05:31 +00:00
blast-geth:
image: blastio/blast-geth:${NETWORK:-mainnet}
volumes:
- blast-data:/blast
ports:
- "9545"
- "9546"
2024-04-01 19:38:00 +00:00
- "6060"
2024-03-04 22:05:31 +00:00
command: >
--datadir=/blast/${GETH_DATA_DIR:-blast-geth-data}
--http
--http.corsdomain="*"
--http.vhosts="*"
--http.addr=0.0.0.0
--http.port=9545
--http.api=web3,debug,eth,txpool,net,engine
--ws
--ws.addr=0.0.0.0
--ws.port=9546
--ws.origins="*"
--ws.api=debug,eth,txpool,net,engine
--authrpc.addr="0.0.0.0"
--authrpc.port="8551"
--authrpc.vhosts="*"
--authrpc.jwtsecret=/blast/jwt.txt
--syncmode=full
2024-04-01 19:38:00 +00:00
--metrics
2024-04-02 16:20:25 +00:00
--metrics.addr=0.0.0.0
2024-03-04 22:05:31 +00:00
--gcmode=archive
--nodiscover
--maxpeers=0
--rollup.disabletxpoolgossip=true
env_file:
2024-03-13 16:21:29 +00:00
- ../config/mainnet-blast/${NETWORK:-mainnet}.config
2024-03-04 22:05:31 +00:00
depends_on:
geth-init:
condition: service_completed_successfully
op-node:
image: blastio/blast-optimism:${NETWORK:-mainnet}
volumes:
2024-03-13 16:21:29 +00:00
- blast-data:/blast
2024-03-04 22:05:31 +00:00
ports:
- "9003"
2024-04-02 17:35:13 +00:00
- "7300"
2024-03-04 22:05:31 +00:00
command: >
op-node
2024-03-08 17:20:44 +00:00
--l1="https://eth-mainnet-1.vdb.to/"
2024-04-02 17:35:13 +00:00
--metrics.enabled
--l1.rpckind="any"
2024-03-13 18:18:57 +00:00
--l1.trustrpc=true
2024-03-04 22:05:31 +00:00
--l2="http://blast-geth:8551"
--l2.jwt-secret=/blast/jwt.txt
2024-03-08 19:27:36 +00:00
--rollup.config="/blast/rollup.json"
2024-03-04 22:05:31 +00:00
depends_on:
- blast-geth
env_file:
2024-03-13 16:21:29 +00:00
- ../config/mainnet-blast/${NETWORK:-mainnet}.config
2024-03-04 22:05:31 +00:00
volumes:
blast-data: