Skip to content

Commit

Permalink
chore: switch from docker-compose to docker compose (#518)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eikix authored Sep 5, 2023
1 parent 4ef2378 commit fcd7c84
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ run-release:

# Run Katana, Deploy Kakarot, Run Kakarot RPC
katana-rpc-up:
docker-compose -f docker-compose.yaml -f docker-compose.katana.yaml up -d --force-recreate --pull always
docker compose -f docker-compose.yaml -f docker-compose.katana.yaml up -d --force-recreate --pull always

katana-rpc-down:
docker-compose -f docker-compose.yaml -f docker-compose.katana.yaml down --remove-orphans
docker compose -f docker-compose.yaml -f docker-compose.katana.yaml down --remove-orphans

# Run Madara, Deploy Kakarot, Run Kakarot RPC
madara-rpc-up:
docker-compose up -d --force-recreate --pull always
docker compose up -d --force-recreate --pull always

madara-rpc-down:
docker-compose down --remove-orphans
docker compose down --remove-orphans

dump-katana:
cargo run --features dump --bin dump-katana
Expand Down

0 comments on commit fcd7c84

Please sign in to comment.