Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Commit

Permalink
fix: fix example relayer running comand
Browse files Browse the repository at this point in the history
  • Loading branch information
P1sar committed Aug 1, 2023
1 parent cb7454d commit b55d192
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ services:
build:
context: ../.
dockerfile: ./example/Dockerfile
command: run --config /cfg/config_evm-evm_1.json --fresh
command: sh -c "sleep 5 && ./bridge run --config /cfg/config_evm-evm_1.json --fresh"
depends_on:
- evm1-1
- evm2-1
Expand All @@ -65,7 +65,7 @@ services:
build:
context: ../.
dockerfile: ./example/Dockerfile
command: run --config /cfg/config_evm-evm_2.json --fresh
command: sh -c "sleep 5 && ./bridge run --config /cfg/config_evm-evm_2.json --fresh"
depends_on:
- evm1-1
- evm2-1
Expand All @@ -78,7 +78,7 @@ services:
build:
context: ../.
dockerfile: ./example/Dockerfile
command: run --config /cfg/config_evm-evm_3.json --fresh
command: sh -c "sleep 5 && ./bridge run --config /cfg/config_evm-evm_3.json --fresh"
depends_on:
- evm1-1
- evm2-1
Expand Down

0 comments on commit b55d192

Please sign in to comment.