Skip to content
This repository was archived by the owner on Apr 3, 2025. It is now read-only.

Commit 22d705d

Browse files
committed
Update for docker-machine version 0.5.
Fix machine state parsing. Give NFS mount verification multiple delayed attempts. Add support for parallels driver. Generalise property names. Refactor variable names. Format code to fit into 80 column space.
1 parent 926fcdf commit 22d705d

File tree

2 files changed

+173
-112
lines changed

2 files changed

+173
-112
lines changed

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
# Docker Machine NFS
22

3-
Activates NFS for an existing boot2docker box created through Docker Machine.
3+
Activates [NFS](https://en.wikipedia.org/wiki/Network_File_System) for an
4+
existing boot2docker box created through
5+
[Docker Machine](https://docs.docker.com/machine/).
6+
7+
## Requirements
8+
9+
* Mac OS X 10.9+
10+
* [Docker Machine](https://docs.docker.com/machine/) 0.5.0+
411

512
## Install
613

714
```sh
8-
# Mac OS X
9-
sudo curl -o /usr/local/bin/docker-machine-nfs https://raw.githubusercontent.com/adlogix/docker-machine-nfs/master/docker-machine-nfs.sh && \
10-
sudo chmod +x /usr/local/bin/docker-machine-nfs
15+
curl https://raw.githubusercontent.com/adlogix/docker-machine-nfs/master/docker-machine-nfs.sh |
16+
sudo tee /usr/local/bin/docker-machine-nfs > /dev/null && \
17+
sudo chmod +x /usr/local/bin/docker-machine-nfs
1118
```
1219

1320
## Usage
@@ -22,4 +29,5 @@ docker-machine-nfs <machine-name> [--force]
2229

2330
## Credits
2431

25-
Heavily inspired by @[mattes](https://github.com/mattes) ruby version (https://gist.github.com/mattes/4d7f435d759ca2581347)
32+
Heavily inspired by @[mattes](https://github.com/mattes) ruby version
33+
[boot2docker-nfs.rb](https://gist.github.com/mattes/4d7f435d759ca2581347).

0 commit comments

Comments
 (0)