This repository was archived by the owner on Mar 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
FAQ
James O. D. Hunt edited this page Sep 13, 2016
·
2 revisions
Contents
This page provides answers to Frequently Asked Questions (and that's a FAQ! :-)
Docker will give this error if you try to start a container but:
- you modified the docker configuration manually from
aufs
to another storage driver (say,overlayfs
using thedockerd
option--storage-driver=overlay
). - your host kernel no longer supports the storage driver specified (
aufs
).
For the latter scenario...
- reboot using a kernel that does still support
aufs
(but take care if the kernel was updated due to security issues!) - export the docker images/containers.
- reboot into the latest kernel (where
dockerd
will be using the modified storage driver). - import the docker images/containers.
- restart the containers.
If you don't care about the containers you previously created using the aufs
driver, you could consider deleting /var/lib/docker/
and restarting the docker service.