зеркало из https://github.com/microsoft/docker.git
10 строки
195 B
Go
10 строки
195 B
Go
|
package daemon
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
// ErrRootFSReadOnly is returned when a container
|
||
|
// rootfs is marked readonly.
|
||
|
ErrRootFSReadOnly = errors.New("container rootfs is marked read-only")
|
||
|
)
|