mirror of https://github.com/docker/compose.git
Merge pull request #10217 from glours/dry-run-pause-support
Dry run pause support
This commit is contained in:
commit
f24d3458c6
|
@ -67,7 +67,7 @@ func (d *DryRunClient) ContainerKill(ctx context.Context, container, signal stri
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *DryRunClient) ContainerPause(ctx context.Context, container string) error {
|
func (d *DryRunClient) ContainerPause(ctx context.Context, container string) error {
|
||||||
return ErrNotImplemented
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *DryRunClient) ContainerRemove(ctx context.Context, container string, options moby.ContainerRemoveOptions) error {
|
func (d *DryRunClient) ContainerRemove(ctx context.Context, container string, options moby.ContainerRemoveOptions) error {
|
||||||
|
@ -91,7 +91,7 @@ func (d *DryRunClient) ContainerStop(ctx context.Context, container string, opti
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *DryRunClient) ContainerUnpause(ctx context.Context, container string) error {
|
func (d *DryRunClient) ContainerUnpause(ctx context.Context, container string) error {
|
||||||
return ErrNotImplemented
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *DryRunClient) CopyFromContainer(ctx context.Context, container, srcPath string) (io.ReadCloser, moby.ContainerPathStat, error) {
|
func (d *DryRunClient) CopyFromContainer(ctx context.Context, container, srcPath string) (io.ReadCloser, moby.ContainerPathStat, error) {
|
||||||
|
|
Loading…
Reference in New Issue