migrate content #1

Merged
OCram85 merged 24 commits from migrate/content into main 2024-05-14 07:40:39 +02:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit f78508b910 - Show all commits

View File

@ -6,7 +6,7 @@ LABEL org.opencontainers.image.authors="marco@ocram85.com"
#ENV PLUGIN_FILE_NAME #ENV PLUGIN_FILE_NAME
#ENV PLUGIN_UPDATE #ENV PLUGIN_UPDATE
ENV PLUGIN_DEBUG="1" #ENV PLUGIN_DEBUG="1"
USER root USER root
COPY --chown=100:101 --chmod=755 ./gitea-package.sh /app/gitea-package.sh COPY --chown=100:101 --chmod=755 ./gitea-package.sh /app/gitea-package.sh
#RUN [ "chmod", "+x", "/app/gitea-package.sh" ] #RUN [ "chmod", "+x", "/app/gitea-package.sh" ]

View File

@ -56,10 +56,9 @@ main() {
if [ -n "$PLUGIN_DEBUG" ]; then if [ -n "$PLUGIN_DEBUG" ]; then
sayW "Debug mode enabled." sayW "Debug mode enabled."
showSettings showSettings
sayW "Available ENV vars:"
showENV showENV
exit 0 exit 0
else
sayW "Debug mode disabled."
fi fi
} }