2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-21 13:23:02 +01:00
This commit is contained in:
kev
2021-12-15 12:11:34 +08:00
parent 12829e241d
commit 39b2387334
8 changed files with 148 additions and 22 deletions

18
nfs/Dockerfile Normal file
View 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"]