-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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)) |
File renamed without changes.