Skip to content

Commit

Permalink
KVM machine driver using new plugin architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Hiltgen committed Sep 11, 2015
1 parent b85e638 commit 6a6844c
Show file tree
Hide file tree
Showing 4 changed files with 658 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
docker-machine-kvm
4 changes: 4 additions & 0 deletions bin/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
default: build

build:
GOGC=off go build -i -o docker-machine-kvm
10 changes: 10 additions & 0 deletions bin/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package main

import (
"github.com/dhiltgen/docker-machine-kvm"
"github.com/docker/machine/libmachine/drivers/plugin"
)

func main() {
plugin.RegisterDriver(kvm.NewDriver())
}
Loading

0 comments on commit 6a6844c

Please sign in to comment.