All Projects → jcbiellikltd → docker-nfs4

jcbiellikltd / docker-nfs4

Licence: other
Simple containerized NFS v4 server running on Alpine Linux

Projects that are alternatives of or similar to docker-nfs4

unfs3
UNFS3 is a user-space implementation of the NFSv3 server specification.
Stars: ✭ 74 (+289.47%)
Mutual labels:  nfs, nfs-server
docker-jitsi-meet
Docker Jitsi Meet WebRTC conferencing system w/Prosody XMPP and s6 overlay
Stars: ✭ 66 (+247.37%)
Mutual labels:  alpine, s6-overlay
docker-mongodb-backup
Docker MongoDB Backup Container based on Alpine w/S6 init, Zabbix Monitoring
Stars: ✭ 27 (+42.11%)
Mutual labels:  alpine, s6-overlay
docker-tinc
Docker Tinc VPN Mesh server w/S6 Overlay Init, Zabbix Monitoring, and distributed configuration updating based on Alpine
Stars: ✭ 35 (+84.21%)
Mutual labels:  alpine, s6-overlay
alpine-qbittorrent-openvpn
qBittorrent docker container with OpenVPN client running as unprivileged user on alpine linux
Stars: ✭ 230 (+1110.53%)
Mutual labels:  alpine, s6-overlay
Leofs
The LeoFS Storage System
Stars: ✭ 1,439 (+7473.68%)
Mutual labels:  nfs, nfs-server
docker-jre
Lean JRE 8 Docker container
Stars: ✭ 25 (+31.58%)
Mutual labels:  alpine, container
docker-nfs-server
No description or website provided.
Stars: ✭ 31 (+63.16%)
Mutual labels:  nfs, nfs-server
Docker Alpine Java
Oracle Java8 over AlpineLinux with glibc 2.29
Stars: ✭ 703 (+3600%)
Mutual labels:  alpine, container
php7-alpine
Docker container for PHP 7 in Alpine Linux, with almost all extensions that you may need
Stars: ✭ 20 (+5.26%)
Mutual labels:  alpine, container
docker-formio-api
Docker Form.io Server based on Debian w/s6 init, Zabbix Monitoring
Stars: ✭ 14 (-26.32%)
Mutual labels:  alpine, s6-overlay
docker-alpine
Docker Alpine Linux Base Images
Stars: ✭ 27 (+42.11%)
Mutual labels:  alpine, s6-overlay
puppet-nfs
Installs and configures NFS server and clients
Stars: ✭ 14 (-26.32%)
Mutual labels:  nfs, nfs-server
jupyterhub-deploy-swarm
A DockerSwarm Jupyterhub setup, which uses a NFS Server running in a Docker Container for persistent storage
Stars: ✭ 19 (+0%)
Mutual labels:  nfs, nfs-server
awesome-cloud-native-security
awesome resources about cloud native security 🐿
Stars: ✭ 233 (+1126.32%)
Mutual labels:  container
docker-alpine-python2
The smallest Docker image with Python 2.7 (~50MB)
Stars: ✭ 36 (+89.47%)
Mutual labels:  alpine
nghttp2-alpine
Minimal nghttp2 docker image with ALPN support
Stars: ✭ 14 (-26.32%)
Mutual labels:  alpine
magento2-ansible-vagrant
Ⓜ️2️⃣ Ansible provisioned Ubuntu 16.04 vagrant box for Magento2 development.
Stars: ✭ 25 (+31.58%)
Mutual labels:  nfs
drupal-container
Drupal container for running Drupal sites with Docker, built with Ansible.
Stars: ✭ 37 (+94.74%)
Mutual labels:  container
docker-opengl
Multi-Arch Docker - Mesa 3D OpenGL Software Rendering (Gallium) - LLVMpipe, and OpenSWR Drivers
Stars: ✭ 68 (+257.89%)
Mutual labels:  alpine

NFS v4 Server Container

Docker Pulls Docker Stars Docker Build Docker Build Status

NFS v4 server running under s6 overlay on Alpine Linux.

Configuration

See example directory for sample config file.

Quickstart

nfs4:
  image: joebiellik/nfs4

  # Required to load kernel NFS module
  privileged: true

  volumes:
    # You must provide an exports config file
    - ./exports:/etc/exports

    # Shares
    - /mnt:/mnt

  ports:
    - "111:111/tcp"
    - "111:111/udp"
    - "2049:2049/tcp"
    - "2049:2049/udp"

Mounting

mount -t nfs4 localhost:/ ./nfs
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].