diff --git a/aurral/Dockerfile b/aurral/Dockerfile index 879b026cbe..3826991edc 100644 --- a/aurral/Dockerfile +++ b/aurral/Dockerfile @@ -17,5 +17,4 @@ LABEL \ COPY rootfs / -RUN chmod a+x /etc/services.d/aurral/run && \ - chmod a+x /usr/local/bin/docker-entrypoint.sh +RUN chmod a+x /etc/services.d/aurral/run diff --git a/aurral/rootfs/usr/local/bin/docker-entrypoint.sh b/aurral/rootfs/usr/local/bin/docker-entrypoint.sh index dd2a6ee3c3..311cb8cb40 100644 --- a/aurral/rootfs/usr/local/bin/docker-entrypoint.sh +++ b/aurral/rootfs/usr/local/bin/docker-entrypoint.sh @@ -1,6 +1,2 @@ #!/bin/sh -# Replacement for the upstream docker-entrypoint.sh. -# The upstream version runs chown -R on /app/backend/data which fails when -# that path is a symlink to a host-mounted HA volume (Operation not permitted). -# All setup (symlinks, directory creation) is handled by the s6 run script. exec "$@"