Compare commits

...

2 Commits

Author SHA1 Message Date
James Mills
15e7a102cd
Fix Docker entrypoint 2023-08-06 12:03:56 +10:00
James Mills
a69c3f300c
Fix Docker image to work with rootless Docker environments 2023-08-06 11:11:29 +10:00
2 changed files with 11 additions and 7 deletions

View File

@ -1,9 +1,15 @@
#!/bin/sh #!/bin/sh
[ -n "${PUID}" ] && usermod -u "${PUID}" zs if [ "$(id -u)" -eq 0 ]; then
[ -n "${PGID}" ] && groupmod -g "${PGID}" zs [ -n "${PUID}" ] && usermod -u "${PUID}" nobody
[ -n "${PGID}" ] && groupmod -g "${PGID}" nobody
fi
printf "Configuring zs...\n" printf "Configuring zs...\n"
printf "Switching UID=%s and GID=%s\n" "${PUID}" "${PGID}" if [ "$(id -u)" -eq 0 ]; then
exec su-exec zs:zs "$@" printf "Switching UID=%s and GID=%s\n" "$(id -u nobody)" "$(id -g nobody)"
exec su-exec nobody:nobody "$@"
else
exec "$@"
fi

View File

@ -50,9 +50,7 @@ RUN apk --no-cache -U add su-exec shadow tzdata ca-certificates curl jq
ENV PUID=1000 ENV PUID=1000
ENV PGID=1000 ENV PGID=1000
RUN addgroup -g "${PGID}" zs && \ RUN mkdir -p /data && chown -R nobody:nobody /data
adduser -D -H -G zs -h /var/empty -u "${PUID}" zs && \
mkdir -p /data && chown -R zs:zs /data
EXPOSE 8000/tcp EXPOSE 8000/tcp