mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-08-21 08:22:00 +02:00
![]() With a very minimal image recipe that just pulls in docker, the daemon won't start due to missing modules, so add the missing ones. The list of new modules was created by diffing the output of `lsmod` before installing all kernel-modules and the output after launching docker with all modules installed. Signed-off-by: Koen Kooi <koen.kooi@oss.qualcomm.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> |
||
---|---|---|
.. | ||
files | ||
docker-moby_git.bb | ||
docker.inc | ||
README | ||
README.rootless |
if containerd is starting docker, and it is interfering with standalone docker operation, you may need to kill the running daemon and restart it:
% ps axf | grep docker | grep -v grep | awk '{print "kill -9 " $1}' | sh % systemctl stop docker % systemctl start docker