Skip to content

Commit

Permalink
Merge pull request #504 from sander2/chore/docker-compose-v2
Browse files Browse the repository at this point in the history
chore: upgrade to docker compose v2
  • Loading branch information
gregdhill authored Jul 25, 2023
2 parents e348f61 + 4613823 commit 3373092
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion runtime/src/integration/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ pub async fn with_timeout<T: Future>(future: T, duration: Duration) -> T::Output
}

pub async fn start_chain() -> std::io::Result<Child> {
let _stop_previous_instance = Command::new("docker-compose")
let _stop_previous_instance = Command::new("docker")
.arg("compose")
.arg("rm")
.arg("-v")
.arg("-s")
Expand Down
2 changes: 1 addition & 1 deletion scripts/run_parachain_node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
cd ..

# Start parachain instance
docker-compose up -d interbtc
docker compose up -d interbtc

0 comments on commit 3373092

Please sign in to comment.