build: add Docker
This commit is contained in:
commit
96167de713
4 changed files with 41 additions and 0 deletions
14
justfile
Normal file
14
justfile
Normal file
|
@ -0,0 +1,14 @@
|
|||
default:
|
||||
just --list
|
||||
|
||||
down:
|
||||
docker compose down
|
||||
|
||||
npm *args:
|
||||
just _run npm {{args}}
|
||||
|
||||
up *args:
|
||||
docker compose up {{args}}
|
||||
|
||||
_run +args:
|
||||
docker compose run --rm --entrypoint bash app -c {{args}}
|
Loading…
Add table
Add a link
Reference in a new issue