podman: enable btrfs storage driver
Adds INSTALL.msg that explains how to handle the new storage driver options. Closes: #29530
This commit is contained in:
parent
7ba7e54d46
commit
99bbdb1148
2 changed files with 24 additions and 4 deletions
21
srcpkgs/podman/INSTALL.msg
Normal file
21
srcpkgs/podman/INSTALL.msg
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
`fuse-overlayfs` has been added as a runtime dependency to podman.
|
||||||
|
podman will now prefer this storage driver to the `vfs` fallback driver.
|
||||||
|
|
||||||
|
To switch to the new storage driver, podman has to be reset:
|
||||||
|
|
||||||
|
# podman system reset
|
||||||
|
|
||||||
|
To keep the `vfs` driver, add this to `/etc/containers/storage.conf`
|
||||||
|
or `~/.config/containers/storage.conf`:
|
||||||
|
|
||||||
|
[storage]
|
||||||
|
driver="vfs"
|
||||||
|
|
||||||
|
Otherwise podman will display an error and refuse any further operation.
|
||||||
|
|
||||||
|
Additionally the `btrfs` storage driver has been enabled. This driver is also
|
||||||
|
available for rootless operation. Reset podman and add the following to your
|
||||||
|
`storage.conf` to switch to this driver:
|
||||||
|
|
||||||
|
[storage]
|
||||||
|
driver="btrfs"
|
|
@ -1,14 +1,13 @@
|
||||||
# Template file for 'podman'
|
# Template file for 'podman'
|
||||||
pkgname=podman
|
pkgname=podman
|
||||||
version=3.0.1
|
version=3.0.1
|
||||||
revision=2
|
revision=3
|
||||||
build_style=go
|
build_style=go
|
||||||
go_import_path="github.com/containers/podman/v2"
|
go_import_path="github.com/containers/podman/v2"
|
||||||
go_package="${go_import_path}/cmd/podman"
|
go_package="${go_import_path}/cmd/podman"
|
||||||
go_build_tags="seccomp apparmor containers_image_ostree_stub
|
go_build_tags="seccomp apparmor containers_image_ostree_stub"
|
||||||
btrfs_noversion exclude_graphdriver_btrfs"
|
|
||||||
hostmakedepends="pkg-config go-md2man"
|
hostmakedepends="pkg-config go-md2man"
|
||||||
makedepends="gpgme-devel libseccomp-devel device-mapper-devel"
|
makedepends="gpgme-devel libseccomp-devel device-mapper-devel libbtrfs-devel"
|
||||||
depends="runc conmon cni-plugins slirp4netns containers.image fuse-overlayfs"
|
depends="runc conmon cni-plugins slirp4netns containers.image fuse-overlayfs"
|
||||||
short_desc="Simple management tool for containers and images"
|
short_desc="Simple management tool for containers and images"
|
||||||
maintainer="Cameron Nemo <cnemo@tutanota.com>"
|
maintainer="Cameron Nemo <cnemo@tutanota.com>"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue