Skip to content

Instantly share code, notes, and snippets.

@butonic
Created August 18, 2025 10:48
Show Gist options
  • Save butonic/64b52e20e1a8a7eb05606ac9fac3879c to your computer and use it in GitHub Desktop.
Save butonic/64b52e20e1a8a7eb05606ac9fac3879c to your computer and use it in GitHub Desktop.
nfs server for opencloud-compose
---
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:
- ${NFS_DATA:-nfs-data}:/data
ports:
- 2049:2049
volumes:
nfs-data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment