docmachine/scripts/gx-teaching

101 lines
2.3 KiB
Plaintext
Raw Normal View History

2021-11-23 22:48:06 +00:00
#!/bin/sh
# vim: set ft=sh:
2021-12-23 21:42:53 +00:00
# Set defaults
BASEDIR="$(pwd)"
2021-12-21 15:39:51 +00:00
ACTION="watch"
2021-11-23 22:48:06 +00:00
DOCKER_IMAGE=glenux/teaching-boilerplate:latest
2021-12-21 15:39:51 +00:00
DOCKER_OPT_TTY="-t"
# Parse arguments
while [ $# -gt 0 ]; do
ARG="${1:-}"
OPT="${2:-}"
shift
2021-12-21 15:55:46 +00:00
# echo "DEBUG: ARG=$ARG OPT=$OPT"
2021-12-21 15:39:51 +00:00
case "$ARG" in
-d|--data-dir)
shift # argument requires a parameter
if [ -z "$OPT" ]; then
>&2 echo "ERROR: missing argument for --data-dir"
exit 1
fi
if [ ! -d "$OPT" ]; then
>&2 echo "ERROR: argument for --data-dir must be a directory"
exit 1
fi
BASEDIR="$(cd "$OPT" && pwd)"
;;
-a|--action)
shift # argument requires a parameter
if [ -z "$OPT" ]; then
>&2 echo "ERROR: missing argument for --action"
exit 1
fi
ACTION="$OPT"
;;
-T|--no-tty)
DOCKER_OPT_TTY=""
;;
-h|--help)
echo "Usage: $0 [options]"
echo ""
echo "-d, --data-dir DIR Content directory"
echo "-a, --action ACTION Action (watch, build, shell, etc.)"
echo "-t, --tty Enable TTY mode (needed for shell)"
echo "-h, --help Show this help"
;;
*)
>&2 echo "ERROR: unknown option '$ARG'"
exit 1
;;
esac
done
2021-11-23 22:48:06 +00:00
echo "basedir = $BASEDIR"
echo "docker_image = $DOCKER_IMAGE"
echo "action = $ACTION"
2021-11-25 16:52:03 +00:00
if [ -f "$BASEDIR/.marp/theme.scss" ]; then
2021-11-24 18:35:20 +00:00
DOCKER_OPT_MARP_THEME="-v $BASEDIR/.marp:/app/.marp"
2021-11-25 16:52:03 +00:00
echo "Theme: detected Marp files. Adding option to command line ($DOCKER_OPT_MARP_THEME)"
else
echo "Theme: no theme detected. Using default files"
2021-11-24 18:35:20 +00:00
fi
if [ -f "$BASEDIR/mkdocs.yml" ]; then
DOCKER_OPT_MKDOCS_CONFIG="-v $BASEDIR/mkdocs.yml:/app/mkdocs.yml"
echo "Mkdocs: detected mkdocs.yml file. Adding option to command line ($DOCKER_OPT_MKDOCS_CONFIG)"
else
echo "Mkdocs: no mkdocs.yml detected. Using default files"
fi
if [ -d "$BASEDIR/slides" ]; then
DOCKER_OPT_MARP_PORT="-p 5200:5200"
fi
if [ -d "$BASEDIR/docs" ]; then
DOCKER_OPT_MKDOCS_PORT="-p 5100:5100"
fi
2021-11-24 18:35:20 +00:00
2021-12-23 21:42:53 +00:00
set -x
2021-12-21 15:39:51 +00:00
docker run -i $DOCKER_OPT_TTY \
--shm-size=1gb \
-e "EXT_UID=$(id -u)" \
-e "EXT_GID=$(id -g)" \
2021-11-23 22:48:06 +00:00
-v "$BASEDIR/docs:/app/docs" \
-v "$BASEDIR/slides:/app/slides" \
2021-11-25 17:44:46 +00:00
-v "$BASEDIR/images:/app/images" \
2021-11-23 22:48:06 +00:00
-v "$BASEDIR/_build:/app/_build" \
$DOCKER_OPT_MKDOCS_CONFIG \
2021-11-24 18:35:20 +00:00
$DOCKER_OPT_MARP_THEME \
$DOCKER_OPT_MKDOCS_PORT \
$DOCKER_OPT_MARP_PORT \
2021-11-23 22:48:06 +00:00
"$DOCKER_IMAGE" "$ACTION"
2021-12-23 21:42:53 +00:00
set +x
2021-11-23 22:48:06 +00:00
# TODO: ask current user permissions
# TODO: fix permissions on generated files