mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00
![]() * don't export CGO_CFLAGS/CGO_CXXFLAGS like the previous version didn't before: https://git.yoctoproject.org/meta-virtualization/commit/?id=aceed7bf95cc8a42c8f470d8edf3c6f03d49da00 * both docker-moby and docker-ce have the same issue as shown with qemuarm build: docker-moby: http://errors.yoctoproject.org/Errors/Details/690021/ docker-ce: http://errors.yoctoproject.org/Errors/Details/690020/ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> |
||
---|---|---|
.. | ||
files | ||
docker-ce_git.bb | ||
docker-moby_git.bb | ||
docker.inc | ||
README |
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