diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..616af24 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +default: build + +build: + go build -i -o docker-machine-parallels ./bin + +clean: + $(RM) docker-machine-parallels + +install: build + cp ./docker-machine-parallels /usr/local/bin/docker-machine-parallels + +.PHONY: install diff --git a/README.md b/README.md new file mode 100644 index 0000000..575de62 --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# Docker Machine Parallels Driver + +### PREVIEW +This is a pre-release version of Parallels Driver for Docker Machine. +Work is still in progress. + +This is a plugin for Docker Machine, wich is gonna be compatible with Docker +Machine v0.5.0. +Refer to this PR for more details: https://github.com/docker/machine/pull/1902 + +## Build + +```bash +$ go get -d github.com/Parallels/docker-machine-parallels +$ cd $GOPATH/github.com/Parallels/docker-machine-parallels +$ make +``` + +The binary will appear in the working directory. Just make it available on the `$PATH` + +## Authors + +* Mikhail Zholobov ([@legal90](https://github.com/legal90)) +* Rickard von Essen ([@rickard-von-essen](https://github.com/rickard-von-essen)) diff --git a/docker-machine-parallels/main.go b/bin/main.go similarity index 100% rename from docker-machine-parallels/main.go rename to bin/main.go