d74e1c991d
Closes #6093. Signed-off-by: ilovezfs <ilovezfs@icloud.com>
16 lines
449 B
Ruby
16 lines
449 B
Ruby
class DockerMachineNfs < Formula
|
|
desc "Activates NFS on docker-machine"
|
|
homepage "https://github.com/adlogix/docker-machine-nfs"
|
|
url "https://github.com/adlogix/docker-machine-nfs/archive/0.3.0.tar.gz"
|
|
sha256 "74a89772c57433ed20e51948dac1defbd4ec5b50db0e16491d687f8c58b2e2d1"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "docker-machine-nfs.sh" => "docker-machine-nfs"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/docker-machine-nfs"
|
|
end
|
|
end
|