Skip to content

Commit

Permalink
change the docker compose command format
Browse files Browse the repository at this point in the history
  • Loading branch information
silentworks committed Aug 2, 2024
1 parent a0d976c commit 707c176
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 @@ -14,17 +14,17 @@ tests_only:

run_infra:
cd infra &&\
docker-compose down &&\
docker-compose up -d
docker compose down &&\
docker compose up -d

clean_infra:
cd infra &&\
docker-compose down --remove-orphans &&\
docker compose down --remove-orphans &&\
docker system prune -a --volumes -f

stop_infra:
cd infra &&\
docker-compose down --remove-orphans
docker compose down --remove-orphans

sync_infra:
python scripts/gh-download.py --repo=supabase/gotrue-js --branch=master --folder=infra
Expand Down

0 comments on commit 707c176

Please sign in to comment.