Skip to content

Commit

Permalink
Add README.md and Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
legal90 committed Sep 28, 2015
1 parent 0116441 commit 5d8129b
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Makefile
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
24 changes: 24 additions & 0 deletions README.md
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.

0 comments on commit 5d8129b

Please sign in to comment.