Files
podman/pkg
Jake Correnti 5633ef1d15 Docker-compose disable healthcheck properly handled
Previously, if a container had healthchecks disabled in the
docker-compose.yml file and the user did a `podman inspect <container>`,
they would have an incorrect output:

```
"Healthcheck":{
   "Test":[
      "CMD-SHELL",
      "NONE"
   ],
   "Interval":30000000000,
   "Timeout":30000000000,
   "Retries":3
}
```

After a quick change, the correct output is now the result:
```
"Healthcheck":{
   "Test":[
      "NONE"
   ]
}
```

Additionally, I extracted the hard-coded strings that were used for
comparisons into constants in `libpod/define` to prevent a similar issue
from recurring.

Closes: #14493

Signed-off-by: Jake Correnti <jcorrenti13@gmail.com>
2022-07-05 08:02:22 -04:00
..
2022-03-22 13:04:35 +01:00
2022-05-25 12:33:34 +02:00
2022-05-23 14:11:29 +02:00
2021-05-06 11:51:15 +02:00
2022-01-18 12:47:07 +01:00
2022-06-27 12:57:44 +01:00
2022-06-14 16:29:42 +02:00
2022-05-04 08:29:54 -05:00
2022-06-14 16:29:42 +02:00
2022-03-15 14:48:08 +01:00
2022-04-26 18:12:22 +02:00
2022-01-18 12:47:07 +01:00
2022-01-18 12:47:07 +01:00
2020-12-22 13:34:31 -05:00
2022-04-26 18:12:22 +02:00
2022-06-27 20:22:20 +02:00