runcom / docker-lvm-plugin

Docker Volume Driver for lvm volumes.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker lvm plugin

Docker Volume Driver for lvm volumes

This plugin can be used to create lvm volumes of specified size, which can then be bind mounted into the container using docker run command.

Setup

1) git clone git@github.com:shishir-a412ed/docker-lvm-plugin.git
2) cd docker-lvm-plugin
3) sudo make install

Usage

  1. Start the docker daemon before starting the docker-lvm-plugin daemon. You can start docker daemon using command:
systemctl start docker
  1. Once docker daemon is up and running, you can start docker-lvm-plugin daemon using command:
systemctl start docker-lvm-plugin
  1. Since logical volumes (lv's) are based on a volume group, it is the responsibility of the user (administrator) to provide a volume group name. You can choose an existing volume group name by listing volume groups on your system using vgs command OR create a new volume group using vgcreate command. e.g.
vgcreate volume_group_one /dev/hda 

where /dev/hda is your partition or whole disk on which physical volumes were created.

  1. Add this volume group name in the config file
/etc/docker/docker-lvm-plugin.conf

Volume Creation

$ docker volume create -d lvm --name foobar --opt size=0.2G

This will create a lvm volume named foobar of size 208 MB (0.2 GB).

Volume List

$ docker volume ls

This will list volumes created by all docker drivers including the default driver (local).

Volume Inspect

$ docker volume inspect foobar

This will inspect foobar and return a JSON.

[
    {
        "Name": "foobar",
        "Driver": "lvm",
        "Mountpoint": "/var/lib/docker-lvm/foobar123"
    }
]

Volume Removal

$ docker volume rm foobar

This will remove lvm volume foobar.

Bind Mount lvm volume inside the container

$ docker run -it -v foobar:/home fedora /bin/bash

This will bind mount the logical volume foobar into the home directory of the container.

License

GNU GPL

About

Docker Volume Driver for lvm volumes.

License:GNU Lesser General Public License v3.0


Languages

Language:Go 93.2%Language:Makefile 6.8%