Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change docker-compose to docker compose
diff --git a/README.md b/README.md index 2ff399cc5..8e09211e4 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Add this to your `.git/hooks/pre-commit` to generate latest graphql schema befor #!/bin/sh echo "pre-commit: Generating graphql schema." -if [ -z `docker ps -q --no-trunc | grep $(docker-compose ps -q web)` ]; then +if [ -z `docker ps -q --no-trunc | grep $(docker compose ps -q web)` ]; then docker compose run --rm web ./manage.py graphql_schema --out schema.graphql else docker compose exec -T web ./manage.py graphql_schema --out schema.graphql
- Loading branch information