fix: broken entrypoint script & config name

This commit is contained in:
Glenn Y. Rolland 2022-01-28 19:43:53 +01:00
parent 73e55d8e55
commit 12b548e906
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ chown -R "$EXT_UID:$EXT_GID" /home/appuser
# Patch mkdocs configuration
if [ -f mkdocs-patch.yml ]; then
yq \
eval-all
eval-all \
'. as $item ireduce ({}; . * $item)' \
mkdocs-source.yml \
mkdocs-patch.yml \

View file

@ -82,7 +82,7 @@ if [ -f "$BASEDIR/mkdocs.yml" ]; then
fi
if [ -f "$BASEDIR/mkdocs-patch.yml" ]; then
DOCKER_OPT_MKDOCS_CONFIG="-v $BASEDIR/mkdocs.yml:/app/mkdocs-patch.yml"
DOCKER_OPT_MKDOCS_CONFIG="-v $BASEDIR/mkdocs-patch.yml:/app/mkdocs-patch.yml"
echo "Mkdocs: detected mkdocs-patch.yml file. Adding option to command line ($DOCKER_OPT_MKDOCS_CONFIG)"
else
echo "Mkdocs: no mkdocs-patch.yml detected. Using default files"