Docker-machine-driver-xenserver derivado do docker-machine-driver-xcp, apenas para compatibilidade de clusters Rancher criados com o driver antigo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
303 B

//This file was modified from the original work, https://github.com/xenserver/docker-machine-driver-xenserver
package main
import (
"github.com/docker/machine/libmachine/drivers/plugin"
"github.com/interlegis/docker-machine-driver-xcp/xcp"
)
func main() {
plugin.RegisterDriver(xcp.NewDriver())
}