attempt at nfs docker
This commit is contained in:
13
kubernetes/nfs-server/Dockerfile
Normal file
13
kubernetes/nfs-server/Dockerfile
Normal 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"]
|
||||
|
||||
Reference in New Issue
Block a user