NewCommandRunUntilStop is a command that allows to keep container running.
()
| 267 | |
| 268 | // NewCommandRunUntilStop is a command that allows to keep container running. |
| 269 | func NewCommandRunUntilStop() Command { |
| 270 | return NewCommandWithoutEntrypoint("tail", "-f", "/dev/null") |
| 271 | } |
| 272 | |
| 273 | type ReadinessProbe interface { |
| 274 | Ready(runnable Runnable) (err error) |
searching dependent graphs…