forked from cerc-io/stack-orchestrator
fixed missing rollup
This commit is contained in:
parent
5123111db0
commit
821d401575
@ -58,9 +58,7 @@ services:
|
|||||||
op-node:
|
op-node:
|
||||||
image: blastio/blast-optimism:${NETWORK:-mainnet}
|
image: blastio/blast-optimism:${NETWORK:-mainnet}
|
||||||
volumes:
|
volumes:
|
||||||
- blast-data:/blast
|
- blast-data:/blast:rw
|
||||||
- ../config/blast/genesis.json:/blast/genesis.json
|
|
||||||
- ../config/blast/rollup.json:/blast/rollup.json
|
|
||||||
ports:
|
ports:
|
||||||
- "9003"
|
- "9003"
|
||||||
command: >
|
command: >
|
||||||
|
@ -35,3 +35,6 @@ def create(context, extra_args):
|
|||||||
compose_file = [f for f in command_context.cluster_context.compose_files if "blast" in f][0]
|
compose_file = [f for f in command_context.cluster_context.compose_files if "blast" in f][0]
|
||||||
source_config_file = Path(compose_file).parent.parent.joinpath("config", "blast", "genesis.json")
|
source_config_file = Path(compose_file).parent.parent.joinpath("config", "blast", "genesis.json")
|
||||||
copy(source_config_file, deploy_dir)
|
copy(source_config_file, deploy_dir)
|
||||||
|
source_config_file = Path(compose_file).parent.parent.joinpath("config", "blast", "rollup.json")
|
||||||
|
copy(source_config_file, deploy_dir)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user