]> git.ipfire.org Git - thirdparty/lxc.git/commit
Make overlayfs mounts work directly
authorChristian Brauner <christianvanbrauner@gmail.com>
Tue, 6 Oct 2015 18:38:13 +0000 (20:38 +0200)
committerStéphane Graber <stgraber@ubuntu.com>
Wed, 7 Oct 2015 16:14:55 +0000 (17:14 +0100)
commit5406bd2ce3b64083c99dcb4f05429392258af3a6
treeacf5f75a9ff9d5367881ade57949443df787c7b8
parente9bcaafeaa73d0f8f0ef8a0190cb74abd8f11db0
Make overlayfs mounts work directly

When users wanted to mount overlay directories with lxc.mount.entry they had to
create upperdirs and workdirs beforehand in order to mount them. To create it
for them we add the functions mount_entry_create_overlay_dirs() and
mount_entry_create_aufs_dirs() which do this for them. User can now simply
specify e.g.:

        lxc.mount.entry = /lower merged overlay lowerdir=/lower,upper=/upper,workdir=/workdir,create=dir

and /upper and /workdir will be created for them. /upper and /workdir need to
be absolute paths to directories which are created under the containerdir (e.g.
under $lxcpath/CONTAINERNAME/). Relative mountpoints, mountpoints outside the
containerdir, and mountpoints within the container's rootfs are ignored. (The
latter *might* change in the future should it be considered safe/useful.)

Specifying

        lxc.mount.entry = /lower merged overlay lowerdir=/lower:/lower2,create=dir

will lead to a read-only overlay mount in accordance with the
kernel-documentation.

Specifying

        lxc.mount.entry = /lower merged overlay lowerdir=/lower,create=dir

will fail when no upperdir and workdir options are given.

Signed-off-by: Christian Brauner <christianvanbrauner@gmail.com>
Acked-by: Serge E. Hallyn <serge.hallyn@ubuntu.com>
src/lxc/conf.c