mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
services: docker: Specify log file for containerd.
* gnu/services/docker.scm (containerd-shepherd-service): Specify log file for containerd.
This commit is contained in:
parent
7d8a4eeacc
commit
f0bfd0fc21
1 changed files with 2 additions and 1 deletions
|
@ -61,7 +61,8 @@ (define (containerd-shepherd-service config)
|
|||
(documentation "containerd daemon.")
|
||||
(provision '(containerd))
|
||||
(start #~(make-forkexec-constructor
|
||||
(list (string-append #$package "/bin/containerd"))))
|
||||
(list (string-append #$package "/bin/containerd"))
|
||||
#:log-file "/var/log/containerd.log"))
|
||||
(stop #~(make-kill-destructor)))))
|
||||
|
||||
(define (docker-shepherd-service config)
|
||||
|
|
Loading…
Reference in a new issue