init with crummy buzzer & docker setup
so much boilerplate :O
This commit is contained in:
commit
f6bf544f54
23 changed files with 746 additions and 0 deletions
14
scripts/dev-ws
Executable file
14
scripts/dev-ws
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
#!/bin/sh -eu
|
||||
|
||||
image=$(cat "$RUN_DIR"/.dockerimage)
|
||||
tag=latest
|
||||
|
||||
set -x
|
||||
|
||||
exec docker run --init --name dumpr-quiz-ws \
|
||||
--rm \
|
||||
--read-only \
|
||||
--label org.dumpr.quiz.service=ws \
|
||||
-p 8765:8765 \
|
||||
-v "$RUN_DIR":/var/quiz:ro \
|
||||
"$image":"$tag" "$@"
|
||||
Loading…
Add table
Add a link
Reference in a new issue