fix: broken entrypoint script & config name
This commit is contained in:
parent
73e55d8e55
commit
12b548e906
2 changed files with 2 additions and 2 deletions
|
@ -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 \
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue