quiz/scripts/dev-ws

17 lines
279 B
Text
Raw Permalink Normal View History

#!/bin/sh -eu
image=$(cat "$RUN_DIR"/.dockerimage)
tag=latest
pubport=8765
set -x
exec docker run --init --name dumpr-quiz-ws \
--rm \
--read-only \
--label org.dumpr.quiz.service=ws \
-p "$pubport":8765 \
-v "$RUN_DIR":/var/quiz:ro \
2021-01-30 13:41:25 +01:00
"$image":"$tag"