docker_nfs-server/docker-compose.yml

16 lines
350 B
YAML
Raw Normal View History

2021-07-23 18:57:38 -04:00
---
version: "2.1"
services:
# https://hub.docker.com/r/itsthenetwork/nfs-server-alpine
nfs:
2021-07-25 16:09:30 -04:00
image: itsthenetwork/nfs-server-alpine:latest-arm
2021-07-23 18:57:38 -04:00
container_name: nfs
restart: unless-stopped
privileged: true
environment:
- SHARED_DIRECTORY=/data
volumes:
2021-07-25 16:09:30 -04:00
- /storage/k8s/volumes/:/data
2021-07-23 18:57:38 -04:00
ports:
- 2049:2049