From 0214053b745411c25dc52c7f0f8973496735858b Mon Sep 17 00:00:00 2001 From: petruknw Date: Wed, 20 May 2026 23:11:37 +1000 Subject: [PATCH] revert: undo entrypoint override (config uses pre-built image, no Docker build) --- aurral/Dockerfile | 3 +-- aurral/rootfs/usr/local/bin/docker-entrypoint.sh | 4 ---- 2 files changed, 1 insertion(+), 6 deletions(-) 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 "$@"