initial checkin

This commit is contained in:
Radar231 2021-07-23 18:57:38 -04:00
commit ef2eaea261
1 changed files with 15 additions and 0 deletions

15
docker-compose.yml Normal file
View File

@ -0,0 +1,15 @@
---
version: "2.1"
services:
# https://hub.docker.com/r/itsthenetwork/nfs-server-alpine
nfs:
image: itsthenetwork/nfs-server-alpine:12
container_name: nfs
restart: unless-stopped
privileged: true
environment:
- SHARED_DIRECTORY=/data
volumes:
- /mnt/zshare/k8s/volumes/:/data
ports:
- 2049:2049