зеркало из https://github.com/microsoft/docker.git
21 строка
335 B
Go
21 строка
335 B
Go
package oci
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
|
)
|
|
|
|
// DefaultSpec returns default oci spec used by docker.
|
|
func DefaultSpec() specs.Spec {
|
|
s := specs.Spec{
|
|
Version: "0.6.0",
|
|
Platform: specs.Platform{
|
|
OS: "SunOS",
|
|
Arch: runtime.GOARCH,
|
|
},
|
|
}
|
|
s.Solaris = &specs.Solaris{}
|
|
return s
|
|
}
|