services: docker: Fix missing containerd-shim binary.

This commit fixes error 'time="2020-10-16T…" level=error msg="Handler for POST
/v1.40/containers/…/start returned error: failed to start shim: exec:
\"containerd-shim\": executable file not found in $PATH: unknown"'.

* gnu/services/docker.scm
(containerd-shepherd-service): Add "containerd-shim" to PATH.
This commit is contained in:
Oleg Pykhalov 2020-10-17 00:40:45 +03:00
parent 6c03d15d7d
commit 6a5a477df4
No known key found for this signature in database
GPG key ID: 167F8EA5001AFA9C

View file

@ -84,7 +84,8 @@ (define (%docker-activation config)
(define (containerd-shepherd-service config)
(let* ((package (docker-configuration-containerd config))
(debug? (docker-configuration-debug? config)))
(debug? (docker-configuration-debug? config))
(containerd (docker-configuration-containerd config)))
(shepherd-service
(documentation "containerd daemon.")
(provision '(containerd))
@ -93,6 +94,9 @@ (define (containerd-shepherd-service config)
#$@(if debug?
'("--log-level=debug")
'()))
;; For finding containerd-shim binary.
#:environment-variables
(list (string-append "PATH=" #$containerd "/bin"))
#:log-file "/var/log/containerd.log"))
(stop #~(make-kill-destructor)))))