Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

How to make Docker work on Debian Stretch

If none of the specific sub-forums seem right for your thread, ask here.
Post Reply
Message
Author
Lincoln278
Posts: 1
Joined: 2018-10-31 05:26

How to make Docker work on Debian Stretch

#1 Post by Lincoln278 »

Docker provides .deb files for docker:

deb https://apt.dockerproject.org/repo delian-stretch main
However, these don't work on Debian Stretch (AMD64) because the kernel does not support the AUFS file system. Switching to the overlay file system leads for me to permission problems in the

Code: Select all

/var/lib/docker/overlay
hierarchy (even when root).

I switched to the overlay file system by starting the docker daemon with

Code: Select all

--storage-driver overlay --
this was suggested as a fix in some comments on the Debian bug tracker.

So, what does work?

Post Reply