Skip to content

This is a managed Docker volume plugin to allow Docker containers to access GlusterFS volumes.

License

Notifications You must be signed in to change notification settings

Pat3ickI/docker-volume-glusterfs

 
 

Repository files navigation

Docker volume plugin for GlusterFS

This is a managed Docker volume plugin to allow Docker containers to access GlusterFS volumes. The GlusterFS client does not need to be installed on the host and everything is managed within the plugin.

TravisCI Go Report Card Docker Pulls Docker Stars

Usage

1 - Install the plugin

docker plugin install --alias glusterfs mikebarkmin/glusterfs:latest

# optional you can set a default server list and/or volume
docker plugin install --alias glusterfs mikebarkmin/glusterfs SERVERS=<server1,server2,...,serverN> VOLNAME=<volname>

# or to enable debug
docker plugin install --alias glusterfs mikebarkmin/glusterfs DEBUG=1

2 - Create a volume

Make sure the gluster volume exists.

Or the mounting of the volume will fail.

$ docker volume create -d glusterfs -o servers=<server1,server2,...,serverN> -o volname=<volname> -o subdir=<subdir> glustervolume
glustervolume
$ docker volume ls
DRIVER           VOLUME NAME
glusterfs:next   glustervolume

or if you set the defaults for the plugin, you can create a volume without any options:

$ docker volume create -d glusterfs glustervolume
glustervolume
$ docker volume ls
DRIVER           VOLUME NAME
glusterfs:next   glustervolume

3 - Use the volume

$ docker run -it -v glustervolume:<path> bash ls <path>

Options

  • servers [required, if no default set]: A comma-separated list of servers e.g.: 192.168.2.1,192.168.1.1
  • volname [required, if no default set]: The name of the glusterfs volume e.g.: gv0. Needs to be defined on the glusterfs cluster.
  • subdir [optional, default: volume name]: The name of the subdir. Will be created, if not found.

For additional options see man mount.glusterfs.

Supported tags and respective Dockerfile links

TODO

  • write integration tests

LICENSE

MIT

About

This is a managed Docker volume plugin to allow Docker containers to access GlusterFS volumes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Go 58.4%
  • Shell 28.9%
  • Makefile 7.5%
  • Dockerfile 5.2%