Skip to content

Commit

Permalink
Fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
crunchyintheory committed Sep 9, 2022
1 parent 5d6e04f commit 89fcd0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ clean:
rm -r dist node_modules

start:
docker run --name poe-item -d -v $(shell pwd):/app \
docker run --name poe-item --rm -d -v $(shell pwd):/app \
-w /app \
-p 4200:4200 \
node:16.17-alpine \
/bin/sh -c './node_modules/@angular/cli/bin/ng.js serve --host 0.0.0.0'

stop:
docker rm poe-item
docker rm -f poe-item

0 comments on commit 89fcd0a

Please sign in to comment.