moby-engine/docker.sysconfig
Federico Gimenez 11b75b66ae Remove fixed storage-driver
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.
2021-01-15 13:41:12 +00:00

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 \
"