• Stars
    star
    148
  • Rank 241,042 (Top 5 %)
  • Language
    Go
  • License
    GNU Lesser Genera...
  • Created about 8 years ago
  • Updated 9 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Docker volume plugin for LVM volumes

docker lvm plugin

CI Actions Status License: GNU LGPL v3.0 Release

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 [email protected]:projectatomic/docker-lvm-plugin.git (You can also use HTTPS to clone: git clone https://github.com/projectatomic/docker-lvm-plugin.git)
2) cd docker-lvm-plugin
3) export GO111MODULE=on
4) make
5) sudo make install

Wanna try it out!? (Vagrant)

From the $root directory of the project.

$ vagrant up

Once the VM is up and running (vagrant global-status will list you all the vagrant VMs running on your system), you can ssh into the VM by running vagrant ssh docker-lvm-plugin-fedora33.

Screencast

asciicast

Usage

  1. Start the docker daemon before starting the docker-lvm-plugin daemon. You can start docker daemon using command:
sudo systemctl start docker
  1. Once docker daemon is up and running, you can start docker-lvm-plugin daemon using command:
sudo systemctl start docker-lvm-plugin

NOTE: docker-lvm-plugin daemon is on-demand socket activated. Running docker volume ls command will automatically start the daemon.

  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 vg0 /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
  1. The docker-lvm-plugin also supports the creation of thinly-provisioned volumes. To create a thinly-provisioned volume, a user (administrator) must first create a thin pool using the lvcreate command.
lvcreate -L 10G -T vg0/mythinpool

This will create a thinpool named mythinpool of size 10G under volume group vg0. NOTE: thinpools are special kind of logical volumes carved out of the volume group. Hence in the above example, to create the thinpool mythinpool you must have atleast 10G of freespace in volume group vg0.

  1. The docker-lvm-plugin allows you to create volumes using an optional volume group, which you can pass using --opt vg in docker volume create command. However, this is not recommended and user (administrator) should stick to the default volume group specified in /etc/docker/docker-lvm-plugin config file.

    If a user still chooses to create a volume using an optional volume group e.g --opt vg=vg1, user must pass --opt vg=vg1 when creating any derivative volumes based off this original volume. E.g

    • Any snapshot volumes which are created off a volume that was created using the optional volume group.
    • Any thin volumes which are created off a thin pool that was created using an optional volume group.

Volume Creation

docker volume create command supports the creation of regular lvm volumes, thin volumes, snapshots of regular and thin volumes.

Usage: docker volume create [OPTIONS]

-d, --driver    string    Specify volume driver name (default "local")
--label         list      Set metadata for a volume (default [])
--name          string    Specify volume name
-o, --opt       map       Set driver specific options (default map[])

Following options can be passed using -o or --opt

--opt size
--opt thinpool
--opt snapshot
--opt keyfile
--opt vg

Please see examples below on how to use these options.

Examples

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

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

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

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

docker volume create -d lvm --opt size=0.2G --opt thinpool=mythinpool --name thin_vol

This will create a thinly-provisioned lvm volume named thin_vol in mythinpool.

docker volume create -d lvm --opt snapshot=foobar --opt size=100M --name foobar_snapshot

This will create a snapshot volume of foobar named foobar_snapshot. For thin snapshots, use the same command above but don't specify a size.

docker volume create -d lvm --opt size=0.2G --opt keyfile=/root/key.bin --name crypt_vol

This will create a LUKS encrypted lvm volume named crypt_vol with the contents of /root/key.bin as a binary passphrase. Snapshots of encrypted volumes use the same key file. The key file must be present when the volume is created, and when it is mounted to a container.

Volume List

Use docker volume ls --help for more information.

$ docker volume ls

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

Volume Inspect

Use docker volume inspect --help for more information.

$ docker volume inspect foobar

This will inspect foobar and return a JSON.

[
    {
        "Driver": "lvm",
        "Labels": {},
        "Mountpoint": "/var/lib/docker-lvm-plugin/foobar",
        "Name": "foobar",
        "Options": {
            "size": "0.2G"
        },
        "Scope": "local"
    }
]

Volume Removal

Use docker volume rm --help for more information.

$ 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.

Tests

sudo make test

NOTE: These are destructive tests and can leave the system in a changed state.
It is highly recommended to run these tests either as part of a CI/CD system or on a immutable infrastructure e.g VMs.

Currently supported environments.

Fedora, RHEL, Centos, Ubuntu (>= 16.04)

License

GNU GPL

More Repositories

1

podman

Podman: A tool for managing OCI containers and pods.
Go
21,713
star
2

skopeo

Work with remote images registries - retrieving information, images, signing content
Go
7,355
star
3

buildah

A tool that facilitates building OCI images.
Go
7,003
star
4

youki

A container runtime written in Rust
Rust
5,793
star
5

podman-compose

a script to run docker-compose.yml using podman
Python
4,567
star
6

podman-desktop

Podman Desktop - A graphical tool for developing on containers and Kubernetes
TypeScript
4,145
star
7

bubblewrap

Low-level unprivileged sandboxing tool used by Flatpak and similar projects
C
3,601
star
8

crun

A fast and lightweight fully featured OCI runtime and C library for running containers
C
2,759
star
9

toolbox

Tool for interactive command line environments on Linux
Shell
2,284
star
10

krunvm

Create microVMs from OCI images
Rust
1,315
star
11

image

Work with containers' images
Go
822
star
12

libkrun

A dynamic library providing Virtualization-based process isolation capabilities
Rust
655
star
13

storage

Container Storage Library
Go
522
star
14

podman-tui

Podman Terminal UI
Go
494
star
15

fuse-overlayfs

FUSE implementation for overlayfs
C
476
star
16

netavark

Container network stack
Rust
457
star
17

udica

This repository contains a tool for generating SELinux security profiles for containers
Python
425
star
18

conmon

An OCI container runtime monitor.
C
395
star
19

composefs

a file system for mounting container images
C
368
star
20

build

another build tool for container images (archived, see https://github.com/rkt/rkt/issues/4024)
Go
341
star
21

quadlet

C
330
star
22

oci-seccomp-bpf-hook

OCI hook to trace syscalls and generate a seccomp profile
Go
280
star
23

podman.io_old

Repository for podman.io website using GitHub Pages.
CSS
259
star
24

bootc

Boot and upgrade via container images
Rust
250
star
25

ansible-podman-collections

Repository for Ansible content that can include playbooks, roles, modules, and plugins for use with the Podman tool
Python
233
star
26

container-selinux

SELinux policy files for Container Runtimes
Roff
227
star
27

podman-py

Python bindings for Podman's RESTful API
Python
215
star
28

gvisor-tap-vsock

A new network stack based on gVisor
Go
212
star
29

dnsname

name resolution for containers
Go
178
star
30

oci-spec-rs

OCI Runtime, Image and Distribution Spec in Rust
Rust
173
star
31

common

Location for shared common files in github.com/containers repos.
Go
161
star
32

conmon-rs

An OCI container runtime monitor written in Rust
Rust
157
star
33

aardvark-dns

Authoritative dns server for A/AAAA container records. Forwards other request to host's /etc/resolv.conf
Rust
151
star
34

virtcontainers

A Go package for building hardware virtualized container runtimes
Go
140
star
35

containrs

General purpose container library
Rust
122
star
36

ocicrypt

Encryption libraries for Encrypted OCI Container images
Go
121
star
37

fetchit

FetchIt is used to manage the life cycle and configuration of Podman containers
Go
109
star
38

prometheus-podman-exporter

Prometheus exporter for podman environments exposing containers, pods, images, volumes and networks information.
Go
105
star
39

bluechi

Bluechi is a systemd service controller intended for multi-node environments with a predefined number of nodes and with a focus on highly regulated ecosystems such as those requiring functional safety.
C
96
star
40

crun-vm

An OCI Runtime that enables Podman, Docker, and Kubernetes to run VM images.
Rust
78
star
41

Demos

Repository is a location of user demos for technologies listed on github.com/containers
Shell
77
star
42

shortnames

Shortnames project is collecting registry alias names for shortnames to fully specified container image names.
Python
66
star
43

libkrunfw

A dynamic library bundling the guest payload consumed by libkrun
C
59
star
44

psgo

A ps(1) AIX-format compatible golang library
Go
56
star
45

python-podman

Python bindings and code examples for using Varlink access to Podman Service
Python
50
star
46

nri-plugins

A collection of community maintained NRI plugins
Go
48
star
47

libocispec

a C library for accessing OCI runtime and image spec files
Python
47
star
48

tar-diff

Go
46
star
49

selinuxd

A daemon that manages SELinux policies on a filesystem
Go
37
star
50

podman-desktop-swift

Swift
34
star
51

podman.io

The new podman.io design project
TypeScript
33
star
52

podman-security-bench

Shell
33
star
53

initoverlayfs

C
32
star
54

nydus-storage-plugin

A storage plugin that provided CRI-O/Podman with the ability to lazy mount nydus images.
Go
30
star
55

buildah.io

Repository for the buildah.io web site using GitHub Pages.
HTML
27
star
56

BuildSourceImage

Tool to build a source image based on an existing OCI image
Shell
26
star
57

ansible-podman

Ansible podman is a package to allow ansible playbooks to manage podman containers
Python
26
star
58

oci-fetch

Simple command line tool for fetching the Open Container Initiative image format over various transports.
Go
23
star
59

podman-wsl-fedora

Root FS image of Fedora for Podman Machine on Windows
22
star
60

containertoolbx.org

Website for the Toolbx project
CSS
20
star
61

appstore

Example directory of Kubernetes YAML and Quadlets tested with Podman
Python
18
star
62

automation_images

Shell
17
star
63

containers-image-proxy-rs

containers-image-proxy-rs
Rust
17
star
64

qm

QM is a containerized environment for running Functional Safety qm (Quality Management) software
Shell
17
star
65

libhvee

Special purposed library for Windows HyperV control
Go
16
star
66

podman-machine-qemu

Qemu build for macOS used by the self-contained `podman machine` installer
Shell
16
star
67

oci-umount

C
13
star
68

docs

Repository for all documentation written about tools hosted at github.com/containers
Shell
12
star
69

automation

Automation scripts and configurations common across the containers org. repositories
Shell
12
star
70

netavark-dhcp-proxy-deprecated

DHCP proxy for Netavark
Rust
11
star
71

podman-desktop-extension-bootc

Support for bootable OS containers (bootc) and generating disk images
TypeScript
9
star
72

podhawk

Python
9
star
73

podman-machine-cni

Go
6
star
74

podman-desktop-catalog

Catalog of extensions of Podman Desktop
6
star
75

validator

C
6
star
76

arty

Arty is a tool for managing OCI Artifacts on OCI Registries.
6
star
77

automation_sandbox

Test-repository for experimenting with in-repo automation tools/settings.
Shell
4
star
78

kubensmnt

Shell
4
star
79

podman-desktop-e2e

Podman desktop e2e tests
Go
3
star
80

.github

The README for the containers organization
3
star
81

fetchit-desktop-extension

TypeScript
3
star
82

podman-desktop-extension-minikube

TypeScript
2
star
83

release-keys

2
star
84

podman-wsl-fedora-arm

Fedora ARM distribution for Podman Machine on WSL
2
star
85

ContainerPlumbing

Container Plumbing Conference information.
2
star
86

bootable

Ruby
2
star
87

nri-plugins-operator

Makefile
2
star
88

luksy

offline encryption/decryption using LUKS formats
Go
2
star
89

PodmanHello

Podman Hello Image Repository
Dockerfile
1
star
90

containers.github.io

HTML
1
star
91

winquit

golang module that supports graceful shutdown of Windows applications
Go
1
star
92

podman-installer

1
star
93

ai-lab-recipes

ai-studio-recipes
1
star