mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
services: oci-container: Allow setting Shepherd respawn? in oci-container-configuration.
* gnu/services/docker.scm (oci-container-configuration) [respawn?]: New field. (oci-container-shepherd-service): use it. * doc/guix.texi: Document it. Change-Id: I0d6367607fd0fd41f90a54b33d80bf4d4f43dd8b Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
This commit is contained in:
parent
7d91bd4530
commit
cb57a3fd9f
2 changed files with 12 additions and 1 deletions
|
@ -40894,6 +40894,10 @@ if it does not exist, otherwise it is appended to.
|
|||
Whether this service should be started automatically by the Shepherd. If it
|
||||
is @code{#f} the service has to be started manually with @command{herd start}.
|
||||
|
||||
@item @code{respawn?} (default: @code{#f}) (type: boolean)
|
||||
Whether to have Shepherd restart the service when it stops, for instance when
|
||||
the underlying process dies.
|
||||
|
||||
@item @code{network} (default: @code{""}) (type: string)
|
||||
Set a Docker network for the spawned container.
|
||||
|
||||
|
|
|
@ -76,6 +76,7 @@ (define-module (gnu services docker)
|
|||
oci-container-configuration-requirement
|
||||
oci-container-configuration-log-file
|
||||
oci-container-configuration-auto-start?
|
||||
oci-container-configuration-respawn?
|
||||
oci-container-configuration-network
|
||||
oci-container-configuration-ports
|
||||
oci-container-configuration-volumes
|
||||
|
@ -472,6 +473,10 @@ (define-configuration/no-serialization oci-container-configuration
|
|||
(boolean #t)
|
||||
"Whether this service should be started automatically by the Shepherd. If it
|
||||
is @code{#f} the service has to be started manually with @command{herd start}.")
|
||||
(respawn?
|
||||
(boolean #f)
|
||||
"Whether to restart the service when it stops, for instance when the
|
||||
underlying process dies.")
|
||||
(network
|
||||
(maybe-string)
|
||||
"Set a Docker network for the spawned container.")
|
||||
|
@ -685,6 +690,8 @@ (define (guess-name name image)
|
|||
(log-file (oci-container-configuration-log-file config))
|
||||
(provision (oci-container-configuration-provision config))
|
||||
(requirement (oci-container-configuration-requirement config))
|
||||
(respawn?
|
||||
(oci-container-configuration-respawn? config))
|
||||
(image (oci-container-configuration-image config))
|
||||
(image-reference (oci-image-reference image))
|
||||
(options (oci-container-configuration->options config))
|
||||
|
@ -694,7 +701,7 @@ (define (guess-name name image)
|
|||
|
||||
(shepherd-service (provision `(,(string->symbol name)))
|
||||
(requirement `(dockerd user-processes ,@requirement))
|
||||
(respawn? #f)
|
||||
(respawn? respawn?)
|
||||
(auto-start? auto-start?)
|
||||
(documentation
|
||||
(string-append
|
||||
|
|
Loading…
Reference in a new issue