Skip to content

Commit

Permalink
docker compose not docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
aronatkins committed Jun 20, 2024
1 parent 09dee6c commit 55fea0d
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 @@ -29,13 +29,13 @@ distclean: clean

.PHONY: up
up: .require-license
docker-compose port connect 3939 2>/dev/null | if ! grep -q ':23939$$'; then \
docker-compose up -d --wait; \
docker compose port connect 3939 2>/dev/null | if ! grep -q ':23939$$'; then \
docker compose up -d --wait; \
fi

.PHONY: down
down:
docker-compose down --remove-orphans
docker compose down --remove-orphans

.PHONY: .require-license
.require-license:
Expand Down

0 comments on commit 55fea0d

Please sign in to comment.