podman: update to 3.1.0.

This commit is contained in:
Andrew J. Hesford 2021-04-03 00:26:52 -04:00
parent f8d20c5eeb
commit c064b7027e
2 changed files with 8 additions and 14 deletions

View file

@ -1,21 +1,15 @@
`fuse-overlayfs` has been added as a runtime dependency to podman. `fuse-overlayfs` has been added as a runtime dependency to podman.
podman will now prefer this storage driver to the `vfs` fallback driver. podman will now prefer this storage driver to the `vfs` fallback driver.
If you have existing containers that rely on the `vfs` driver, podman
will display an error and refuse any further operation.
To switch to the new storage driver, podman has to be reset: To switch to the new storage driver, podman has to be reset:
# podman system reset # podman system reset
To keep the `vfs` driver, add this to `/etc/containers/storage.conf` To instead keep using the `vfs` driver, add
or `~/.config/containers/storage.conf`:
[storage] [storage]
driver="vfs" driver="vfs"
Otherwise podman will display an error and refuse any further operation. to `/etc/containers/storage.conf` or `~/.config/containers/storage.conf`.
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"

View file

@ -1,9 +1,9 @@
# Template file for 'podman' # Template file for 'podman'
pkgname=podman pkgname=podman
version=3.0.1 version=3.1.0
revision=3 revision=1
build_style=go build_style=go
go_import_path="github.com/containers/podman/v2" go_import_path="github.com/containers/podman/v3"
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"
hostmakedepends="pkg-config go-md2man" hostmakedepends="pkg-config go-md2man"
@ -14,7 +14,7 @@ maintainer="Cameron Nemo <cnemo@tutanota.com>"
license="Apache-2.0" license="Apache-2.0"
homepage="https://podman.io/" homepage="https://podman.io/"
distfiles="https://github.com/containers/libpod/archive/v${version}.tar.gz" distfiles="https://github.com/containers/libpod/archive/v${version}.tar.gz"
checksum=259e682d6e90595573fe8880e0252cc8b08c813e19408b911c43383a6edd6852 checksum=60031aa620cbfab641ffef9cb4e68240a0383c23ffd0276938684e98794bb5db
if [ "$CROSS_BUILD" ]; then if [ "$CROSS_BUILD" ]; then
go_build_tags+=" containers_image_openpgp" go_build_tags+=" containers_image_openpgp"