ContainerCreate creates a regular container
(ctx context.Context, params backend.ContainerCreateConfig)
| 50 | |
| 51 | // ContainerCreate creates a regular container |
| 52 | func (daemon *Daemon) ContainerCreate(ctx context.Context, params backend.ContainerCreateConfig) (containertypes.CreateResponse, error) { |
| 53 | return daemon.containerCreate(ctx, daemon.config(), createOpts{ |
| 54 | params: params, |
| 55 | }) |
| 56 | } |
| 57 | |
| 58 | // ContainerCreateIgnoreImagesArgsEscaped creates a regular container. This is called from the builder RUN case |
| 59 | // and ensures that we do not take the images ArgsEscaped |
nothing calls this directly
no test coverage detected