mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-21 13:23:02 +01:00
add nfs
This commit is contained in:
18
nfs/Dockerfile
Normal file
18
nfs/Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
#
|
||||
# Dockerfile for nfs
|
||||
#
|
||||
|
||||
FROM debian:bullseye
|
||||
MAINTAINER EasyPi Software Foundation
|
||||
|
||||
RUN set -xe \
|
||||
&& apt update \
|
||||
&& apt install -y nfs-ganesha nfs-ganesha-vfs tini \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY ./docker-entrypoint.sh /entrypoint.sh
|
||||
|
||||
EXPOSE 2049
|
||||
|
||||
ENTRYPOINT ["tini", "--"]
|
||||
CMD ["/entrypoint.sh"]
|
||||
Reference in New Issue
Block a user