docker_nfs-server/docker-compose.yml

16 lines
350 B
YAML

---
version: "2.1"
services:
# https://hub.docker.com/r/itsthenetwork/nfs-server-alpine
nfs:
image: itsthenetwork/nfs-server-alpine:latest-arm
container_name: nfs
restart: unless-stopped
privileged: true
environment:
- SHARED_DIRECTORY=/data
volumes:
- /storage/k8s/volumes/:/data
ports:
- 2049:2049