From: Adam Dullage Date: Wed, 3 May 2023 19:14:43 +0000 (+0100) Subject: Added breaking changes warnings to entrypoint script. X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=6af4f90d32fa9177c36d42db08bfa09d6714ee7f;p=flatnotes.git Added breaking changes warnings to entrypoint script. --- diff --git a/entrypoint.sh b/entrypoint.sh index a7159c1..84e3b23 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -21,6 +21,11 @@ adduser \ echo Setting file permissions... chown -R ${PUID}:${PGID} ${FLATNOTES_PATH} +echo "WARNING: Breaking changes introduced in version 3.x:" +echo " - The port flatnotes uses inside the Docker container has been changed to 8080 (previously 80)." +echo " - To accompany the above change, support for the PORT environment variable has been removed." +echo " - The note directory inside the Docker container has moved from /app/data to simply /data." + echo Starting flatnotes... cd ${APP_PATH} exec gosu ${PUID}:${GUID} \