Skip to content

Commit

Permalink
s/docker-compose/docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
stchris committed Sep 3, 2024
1 parent f97f086 commit 8a4f717
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ all: clean install test
.PHONY: build

build-docker:
docker-compose build --no-rm --parallel
docker compose build --no-rm --parallel

install:
pip install -q -e .
Expand All @@ -16,7 +16,7 @@ dev:
python3 -m pip install -q -r requirements-dev.txt

test:
docker-compose run --rm shell pytest --cov=servicelayer
docker compose run --rm shell pytest --cov=servicelayer
@echo "⚠️ you might notice a warning about a fairy from SQLAlchemy"
@echo "this is fixed in a newer release -- see https://github.com/sqlalchemy/sqlalchemy/issues/10414"
@echo "we are ignoring this for now"
Expand All @@ -31,7 +31,7 @@ format-check:
black --check .

shell:
docker-compose run --rm shell
docker compose run --rm shell

build:
python3 setup.py sdist bdist_wheel
Expand Down

0 comments on commit 8a4f717

Please sign in to comment.