(cmd string, args ...string)
| 258 | } |
| 259 | |
| 260 | func NewCommandWithoutEntrypoint(cmd string, args ...string) Command { |
| 261 | return Command{ |
| 262 | Cmd: cmd, |
| 263 | Args: args, |
| 264 | EntrypointDisabled: true, |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | // NewCommandRunUntilStop is a command that allows to keep container running. |
| 269 | func NewCommandRunUntilStop() Command { |
no outgoing calls
searching dependent graphs…