Commit c003bbf6 authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

ops-bedrock: fix whitespace issue in docker-compose (#3197)

Fixes whitespace issues by adding quotes around
volumes.
Co-authored-by: default avatarwsdt <kevin.riedl@wavect.io>
Co-authored-by: default avatarwsdt <kevin.riedl@wavect.io>
parent 843a72d4
...@@ -19,7 +19,7 @@ services: ...@@ -19,7 +19,7 @@ services:
- "8545:8545" - "8545:8545"
volumes: volumes:
- "l1_data:/db" - "l1_data:/db"
- ${PWD}/../.devnet/genesis-l1.json:/genesis.json - "${PWD}/../.devnet/genesis-l1.json:/genesis.json"
l2: l2:
build: build:
...@@ -29,8 +29,8 @@ services: ...@@ -29,8 +29,8 @@ services:
- "9545:8545" - "9545:8545"
volumes: volumes:
- "l2_data:/db" - "l2_data:/db"
- ${PWD}/../.devnet/genesis-l2.json:/genesis.json - "${PWD}/../.devnet/genesis-l2.json:/genesis.json"
- ${PWD}/test-jwt-secret.txt:/config/test-jwt-secret.txt - "${PWD}/test-jwt-secret.txt:/config/test-jwt-secret.txt"
entrypoint: # pass the L2 specific flags by overriding the entry-point and adding extra arguments entrypoint: # pass the L2 specific flags by overriding the entry-point and adding extra arguments
- "/bin/sh" - "/bin/sh"
- "/entrypoint.sh" - "/entrypoint.sh"
...@@ -70,10 +70,10 @@ services: ...@@ -70,10 +70,10 @@ services:
- "7300:7300" - "7300:7300"
- "6060:6060" - "6060:6060"
volumes: volumes:
- ${PWD}/p2p-sequencer-key.txt:/config/p2p-sequencer-key.txt - "${PWD}/p2p-sequencer-key.txt:/config/p2p-sequencer-key.txt"
- ${PWD}/p2p-node-key.txt:/config/p2p-node-key.txt - "${PWD}/p2p-node-key.txt:/config/p2p-node-key.txt"
- ${PWD}/test-jwt-secret.txt:/config/test-jwt-secret.txt - "${PWD}/test-jwt-secret.txt:/config/test-jwt-secret.txt"
- ${PWD}/../.devnet/rollup.json:/rollup.json - "${PWD}/../.devnet/rollup.json:/rollup.json"
- op_log:/op_log - op_log:/op_log
op-proposer: op-proposer:
......
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