Block a user
fuse-filter-fs (latest)
Published 2026-07-14 16:13:48 +02:00 by soeren
Installation
docker pull gitea.freundchenhub.com/soeren/fuse-filter-fs:latestsha256:a34a0647eea55f98553c3aa21bad4858008bd8618aab9e24e42566965bfef4e9
Image Layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1783900800' |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends python3 libfuse3-3 fuse3 && echo "user_allow_other" >> /etc/fuse.conf && echo "allow_non_empty" >> /etc/fuse.conf && rm -rf /var/lib/apt/lists/* # buildkit |
| COPY /venv /venv # buildkit |
| COPY fuse_filter_fs.py /app/fuse_filter_fs.py # buildkit |
| COPY entrypoint.sh /app/entrypoint.sh # buildkit |
| RUN /bin/sh -c chmod +x /app/entrypoint.sh # buildkit |
| RUN /bin/sh -c mkdir -p /mnt/source /mnt/filtered # buildkit |
| ENTRYPOINT ["/app/entrypoint.sh"] |