Skip to content

Commit

Permalink
chore: Update Makefile to Compose v2 (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
creaturenex authored Feb 20, 2024
1 parent f182d65 commit d96fa3f
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 react \
docker compose run react \
sh

0 comments on commit d96fa3f

Please sign in to comment.