
The LXC driver was deprecated in Docker 1.8. Following the deprecation rules, we can remove a deprecated feature after two major releases. LXC won't be supported anymore starting on Docker 1.10. Signed-off-by: David Calavera <david.calavera@gmail.com>
11 lines
176 B
Go
11 lines
176 B
Go
package main
|
|
|
|
import (
|
|
_ "github.com/docker/docker/daemon/execdriver/native"
|
|
"github.com/docker/docker/pkg/reexec"
|
|
)
|
|
|
|
func main() {
|
|
// Running in init mode
|
|
reexec.Init()
|
|
}
|