Instead of configuring the docker daemon to use a fixed storage-driver remove the setting and let it decide which one to use. Trying to use the moby-engine package on a Fedora33 I was getting the error described here https://github.com/kubernetes-sigs/kind/issues/1988 because of the default btrfs filesystem, removing the storage-driver setting from docker's sysconfig fixes it.
10 lines
322 B
Text
10 lines
322 B
Text
# /etc/sysconfig/docker
|
|
|
|
# Modify these options if you want to change the way the docker daemon runs
|
|
OPTIONS="--selinux-enabled \
|
|
--log-driver=journald \
|
|
--live-restore \
|
|
--default-ulimit nofile=1024:1024 \
|
|
--init-path /usr/libexec/docker/docker-init \
|
|
--userland-proxy-path /usr/libexec/docker/docker-proxy \
|
|
"
|