attempt at nfs docker

This commit is contained in:
2025-01-13 21:28:47 -07:00
parent a2771afe2d
commit 0ae62c3020
7 changed files with 66 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
FROM alpine:latest
RUN apk add --no-cache nfs-utils bash
RUN mkdir -p /exports
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
EXPOSE 2049 20048
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]