mirror of
https://github.com/docker/compose.git
synced 2025-07-27 07:34:10 +02:00
implement healthcheck.disable by setting Test: "NONE"
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
parent
f34f49a16b
commit
907e8e1f24
@ -132,8 +132,12 @@ func ToMobyHealthCheck(check *compose.HealthCheckConfig) *container.HealthConfig
|
||||
if check.Retries != nil {
|
||||
retries = int(*check.Retries)
|
||||
}
|
||||
test := check.Test
|
||||
if check.Disable {
|
||||
test = []string{"NONE"}
|
||||
}
|
||||
return &container.HealthConfig{
|
||||
Test: check.Test,
|
||||
Test: test,
|
||||
Interval: interval,
|
||||
Timeout: timeout,
|
||||
StartPeriod: period,
|
||||
|
Loading…
x
Reference in New Issue
Block a user