Now that Docker released an upgrade to version 23.0.0
I got an unfriendly reminder that three old Ubuntu installations were still configured to use aufs
with Docker.
I had to revert to version 20.10.23
in order to be able to start my containers.
According to a chatbot, I can use docker save
to export the content of the image, then upgrade the system to 23.0.0
, and use docker load
in order to recreate the image for use with the overlay2
driver.
Now my question is:
Is it possible to push
the old, original, unsaved aufs
images of the 20.10.23
version into a private registry, then upgrade the system to Docker version 23.0.0
, and have docker run
pull those old images for use with the overlay2
driver?
Could this cause an undefined behavior because the images in the registry were created with aufs
, or is this a working migration path?