Skip to content

Commit cbc7fb6

Browse files
allow scripts to run even if they end up non-executable, which seems to happen on Windows machines (#38)
1 parent 4429997 commit cbc7fb6

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

docker-compose.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ services:
55
- 8545:8545
66
- 8546:8546
77
- 30303:30303
8-
command:
9-
- ./geth-entrypoint.sh
8+
command: [ "sh", "./geth-entrypoint.sh" ]
109
environment:
1110
- OP_GETH_GENESIS_FILE_PATH=goerli/genesis-l2.json
1211
- OP_GETH_SEQUENCER_HTTP=https://goerli.base.org
@@ -22,8 +21,7 @@ services:
2221
- 9222:9222
2322
- 7300:7300 # metrics
2423
- 6060:6060
25-
command:
26-
- ./op-node-entrypoint.sh
24+
command: [ "sh", "./op-node-entrypoint.sh" ]
2725
environment:
2826
- OP_NODE_L1_ETH_RPC=https://ethereum-goerli-rpc.allthatnode.com # [recommended] replace with your preferred L1 (ethereum, not Base) node RPC URL
2927
- OP_NODE_L2_ENGINE_AUTH=/tmp/engine-auth-jwt

0 commit comments

Comments
 (0)