summaryrefslogtreecommitdiff
path: root/daemon/daemon.go
diff options
context:
space:
mode:
authorNicolas De Loof <nicolas.deloof@gmail.com>2022-08-04 10:37:04 +0200
committerLaura Brehm <laurabrehm@hey.com>2023-03-06 15:11:36 +0100
commit168ca2dcc800ca6bb5e749734bf0baec6eb6806f (patch)
tree40c90baaa39063c383a6c6cbec448a074a95a48c /daemon/daemon.go
parentde90b5e9adc1220482ea35d2de25ec6d646b6922 (diff)
downloaddocker-168ca2dcc800ca6bb5e749734bf0baec6eb6806f.tar.gz
Introduce support for docker commit
Signed-off-by: Laura Brehm <laurabrehm@hey.com> Co-authored-by: Laura Brehm <laurabrehm@hey.com> Co-authored-by: Sebastiaan van Stijn <github@gone.nl> Co-authored-by: Paweł Gronowski <pawel.gronowski@docker.com> Co-authored-by: Nicolas De Loof <nicolas.deloof@gmail.com>
Diffstat (limited to 'daemon/daemon.go')
-rw-r--r--daemon/daemon.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/daemon.go b/daemon/daemon.go
index dc0f749171..ec5142faa9 100644
--- a/daemon/daemon.go
+++ b/daemon/daemon.go
@@ -1005,7 +1005,7 @@ func NewDaemon(ctx context.Context, config *config.Config, pluginStore *plugin.S
if err := configureKernelSecuritySupport(config, driverName); err != nil {
return nil, err
}
- d.imageService = ctrd.NewService(d.containerdCli, driverName, d, d.registryService)
+ d.imageService = ctrd.NewService(d.containerdCli, d.containers, driverName, d, d.registryService)
} else {
layerStore, err := layer.NewStoreFromOptions(layer.StoreOptions{
Root: config.Root,