Remove 'docker-' prefix for containerd and runc binaries#37907
Remove 'docker-' prefix for containerd and runc binaries#37907yongtang merged 3 commits intomoby:masterfrom
Conversation
d077cbb to
a417216
Compare
Codecov Report
@@ Coverage Diff @@
## master #37907 +/- ##
==========================================
- Coverage 36.1% 36.09% -0.02%
==========================================
Files 610 610
Lines 45115 45121 +6
==========================================
- Hits 16291 16288 -3
- Misses 26584 26593 +9
Partials 2240 2240 |
a417216 to
d62e211
Compare
This allows to run the daemon in environments that have upstream containerd installed. Signed-off-by: Tibor Vass <[email protected]>
d62e211 to
34eede0
Compare
Signed-off-by: Tibor Vass <[email protected]>
Signed-off-by: Tibor Vass <[email protected]>
|
I'm wondering this might cause packaging issues. |
|
ping @seemethere ^^ |
|
|
|
This is a very bad idea -- Docker has always been stuck on an older version of There is no workaround for this change either! Speaking on the openSUSE side of things, we will carry a revert of this patch.
This is not a good practice when packaging (and distributions won't accept such packages), not to mention that attempting to install such packages on most distributions will result in warnings due to file conflicts between packages. |
|
Yes, it is. Another issue: When I use my own default containerd to start docker, once I kill containerd, then restart dockerd, dockerd will start his own contanerd, then the old containerd-shim is not stopped, and another containerd-shim is started, there are two containerd-shim for one container. |
This allows to run the daemon in environments that have upstream containerd installed.
Signed-off-by: Tibor Vass [email protected]