mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
20 lines
445 B
Go
20 lines
445 B
Go
// +build windows
|
|
|
|
package windows
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
)
|
|
|
|
// Pause implements the exec driver Driver interface.
|
|
func (d *Driver) Pause(c *execdriver.Command) error {
|
|
return fmt.Errorf("Windows: Containers cannot be paused")
|
|
}
|
|
|
|
// Unpause implements the exec driver Driver interface.
|
|
func (d *Driver) Unpause(c *execdriver.Command) error {
|
|
return fmt.Errorf("Windows: Containers cannot be paused")
|
|
}
|