Commit 12881b48 authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

ops: use list syntax for env_file (#640)

parent a76cde5c
...@@ -47,7 +47,7 @@ services: ...@@ -47,7 +47,7 @@ services:
# override with the dtl script and the env vars required for it # override with the dtl script and the env vars required for it
entrypoint: ./dtl.sh entrypoint: ./dtl.sh
env_file: env_file:
./envs/dtl.env - ./envs/dtl.env
# set the rest of the env vars for the network whcih do not # set the rest of the env vars for the network whcih do not
# depend on the docker-compose setup # depend on the docker-compose setup
environment: environment:
...@@ -68,7 +68,7 @@ services: ...@@ -68,7 +68,7 @@ services:
# override with the geth script and the env vars required for it # override with the geth script and the env vars required for it
entrypoint: sh ./geth.sh entrypoint: sh ./geth.sh
env_file: env_file:
./envs/geth.env - ./envs/geth.env
environment: environment:
ETH1_HTTP: http://l1_chain:8545 ETH1_HTTP: http://l1_chain:8545
ROLLUP_STATE_DUMP_PATH: http://deployer:8081/state-dump.latest.json ROLLUP_STATE_DUMP_PATH: http://deployer:8081/state-dump.latest.json
...@@ -105,7 +105,7 @@ services: ...@@ -105,7 +105,7 @@ services:
dockerfile: ./ops/docker/Dockerfile.batch-submitter dockerfile: ./ops/docker/Dockerfile.batch-submitter
entrypoint: ./batches.sh entrypoint: ./batches.sh
env_file: env_file:
./envs/batches.env - ./envs/batches.env
environment: environment:
L1_NODE_WEB3_URL: http://l1_chain:8545 L1_NODE_WEB3_URL: http://l1_chain:8545
L2_NODE_WEB3_URL: http://l2geth:8545 L2_NODE_WEB3_URL: http://l2geth:8545
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment