Begin supporting FreeBSD with a v0.2.9 variant of containerd

This commit is contained in:
R. Tyler Croy 2017-09-06 03:33:37 +08:00
parent cfb82a876e
commit 2c1089e6ec
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,5 @@
// +build !linux
package main
import (

10
specs/spec_freebsd.go Normal file
View File

@ -0,0 +1,10 @@
package specs
import ocs "github.com/opencontainers/runtime-spec/specs-go"
type (
// ProcessSpec aliases the platform process specs
ProcessSpec ocs.Process
// Spec aliases the platform oci spec
Spec ocs.Spec
)