fix(notepad): override entrypoint to skip chown on NFS-mounted _tmp

The notepad container's entrypoint runs chown -R www-data:www-data
on /var/www/html/_tmp, which fails because the NFS export on nebula
uses all_squash with anonuid=65534. Override the command to skip
chown and just create the dir + copy .htaccess before starting apache.
This commit is contained in:
2026-06-28 15:22:10 -03:00
parent 63b768ebf4
commit 5ff3589fc9

View File

@@ -19,6 +19,16 @@ spec:
- name: notepad - name: notepad
image: jdreinhardt/minimalist-web-notepad:latest image: jdreinhardt/minimalist-web-notepad:latest
imagePullPolicy: Always imagePullPolicy: Always
# The image entrypoint runs `chown -R www-data:www-data` on the NFS-mounted
# _tmp dir, which fails because the NFS export uses all_squash (anonuid=65534).
# Override the entrypoint to skip chown — ownership is handled by the NFS server.
command:
- sh
- -c
- >-
mkdir -p /var/www/html/_tmp &&
cp -n /var/www/html/notes.htaccess /var/www/html/_tmp/.htaccess 2>/dev/null;
exec docker-php-entrypoint apache2-foreground
ports: ports:
- containerPort: 80 - containerPort: 80
volumeMounts: volumeMounts: