From bac96268d71bc32e364eda9ea31469600e45c7c6 Mon Sep 17 00:00:00 2001 From: Radar231 Date: Sun, 25 Jul 2021 16:09:30 -0400 Subject: [PATCH] added README.md file --- README.md | 7 +++++++ docker-compose.yml | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..0583607 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# nfs-server docker deployment + +## Introduction + +This is a docker-compose configuration to run an nfs-server on a Raspberry PI4, +serving files from an attached external USB HDD. + diff --git a/docker-compose.yml b/docker-compose.yml index 2eab4b3..f259e29 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,13 +3,13 @@ version: "2.1" services: # https://hub.docker.com/r/itsthenetwork/nfs-server-alpine nfs: - image: itsthenetwork/nfs-server-alpine:12 + image: itsthenetwork/nfs-server-alpine:latest-arm container_name: nfs restart: unless-stopped privileged: true environment: - SHARED_DIRECTORY=/data volumes: - - /mnt/zshare/k8s/volumes/:/data + - /storage/k8s/volumes/:/data ports: - 2049:2049