github.com/kata-containers/runtime@v0.0.0-20210505125100-04f29832a923/virtcontainers/doc.go (about) 1 // Copyright (c) 2016 Intel Corporation 2 // 3 // SPDX-License-Identifier: Apache-2.0 4 // 5 6 /* 7 Package virtcontainers manages hardware virtualized containers. 8 Each container belongs to a set of containers sharing the same networking 9 namespace and storage, also known as a sandbox. 10 11 Virtcontainers sandboxes are hardware virtualized, i.e. they run on virtual machines. 12 Virtcontainers will create one VM per sandbox, and containers will be created as 13 processes within the sandbox VM. 14 15 The virtcontainers package manages both sandboxes and containers lifecycles. 16 */ 17 package virtcontainers