Entrypoint with scripts directory + moved mount.sh to scripts directory

This commit is contained in:
DevilaN 2022-10-20 11:35:11 +02:00
parent 31e4dec08f
commit b34a15c372
3 changed files with 35 additions and 3 deletions

View file

@ -75,13 +75,13 @@ RUN pip install xformers-0.0.14.dev0-cp310-cp310-linux_x86_64.whl
COPY . /docker COPY . /docker
RUN <<EOF RUN <<EOF
chmod +x /docker/mount.sh && python3 /docker/info.py ${ROOT}/modules/ui.py chmod +x /docker/docker-entrypoint.sh /docker/docker-entrypoint.d/*.sh && python3 /docker/info.py ${ROOT}/modules/ui.py
EOF EOF
ENTRYPOINT ["/docker/docker-entrypoint.sh"]
ENV CLI_ARGS="" ENV CLI_ARGS=""
WORKDIR ${WORKDIR} WORKDIR ${WORKDIR}
EXPOSE 7860 EXPOSE 7860
# run, -u to not buffer stdout / stderr # run, -u to not buffer stdout / stderr
CMD /docker/mount.sh && \ CMD python3 -u ../../webui.py --listen --port 7860 --ckpt-dir ${ROOT}/models/Stable-diffusion ${CLI_ARGS}
python3 -u ../../webui.py --listen --port 7860 --ckpt-dir ${ROOT}/models/Stable-diffusion ${CLI_ARGS}

View file

@ -0,0 +1,32 @@
#!/bin/sh
# vim:sw=4:ts=4:et
set -e
ENTRYPOINT_DIR="/docker/docker-entrypoint.d/"
if /usr/bin/find "$ENTRYPOINT_DIR" -mindepth 1 -maxdepth 1 -type f -print -quit 2>/dev/null | read v; then
echo "$0: $ENTRYPOINT_DIR is not empty, will attempt to perform configuration"
echo "$0: Looking for shell scripts in $ENTRYPOINT_DIR"
find "$ENTRYPOINT_DIR" -follow -type f -print | sort -V | while read -r f; do
case "$f" in
*.sh)
if [ -x "$f" ]; then
echo "$0: Launching $f";
"$f"
else
# warn on shell scripts without exec bit
echo "$0: Ignoring $f, not executable";
fi
;;
*) echo "$0: Ignoring $f";;
esac
done
echo "$0: Configuration complete; ready for start up"
else
echo "$0: No files found in $ENTRYPOINT_DIR, skipping configuration"
fi
exec "$@"