Skip to content

Commit

Permalink
chore: Update Makefile to Compose v2 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
creaturenex authored Feb 20, 2024
1 parent 8151ead commit 1e920d2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
develop: clean build run

build:
docker-compose build
docker compose build

clean:
docker-compose stop -t0
docker-compose rm -f
docker compose stop -t0
docker compose rm -f

run:
docker-compose up
docker compose up

shell:
docker-compose run vue \
docker compose run vue \
sh

0 comments on commit 1e920d2

Please sign in to comment.