Skip to content

Commit a619617

Browse files
committed
Merge pull request #38 from gondor/master
Update go pathing
2 parents b23fe65 + 4b8f2cc commit a619617

File tree

6 files changed

+17
-9
lines changed

6 files changed

+17
-9
lines changed

.goxc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
"debs": {
1616
"metadata": {
1717
"description": "Docker Volume Plugin - Netshare",
18-
"maintainer": "Jeremy Unruh (https://github.com/gondor)"
18+
"maintainer": "Jeremy Unruh (https://github.com/ContainX)"
1919
},
2020
"metadata-deb": {
21-
"Homepage": "https://github.com/gondor/docker-volume-netshare"
21+
"Homepage": "https://github.com/ContainX/docker-volume-netshare"
2222
},
2323
"other-mapped-files": {
2424
"/": "support/sysvinit-debian/"

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Docker NFS, AWS EFS & Samba/CIFS Volume Plugin
22

3-
[![Build Status](https://travis-ci.org/gondor/docker-volume-netshare.svg)](https://travis-ci.org/gondor/docker-volume-netshare) [![release](http://github-release-version.herokuapp.com/github/gondor/docker-volume-netshare/release.svg?style=flat)](https://github.com/gondor/docker-volume-netshare/releases/latest)
3+
[![Build Status](https://travis-ci.org/ContainX/docker-volume-netshare.svg)](https://travis-ci.org/ContainX/docker-volume-netshare) [![release](http://github-release-version.herokuapp.com/github/ContainX/docker-volume-netshare/release.svg?style=flat)](https://github.com/ContainX/docker-volume-netshare/releases/latest)
44

55
Mount NFS v3/4, AWS EFS or CIFS inside your docker containers. This is a docker plugin which enables these volume types to be directly mounted within a container.
66

7+
### [http://netshare.containx.io](http://netshare.containx.io)
8+
79
## NFS Prerequisites on Linux
810

911
NFS needs to be installed on Linux systems in order to properly mount NFS mounts.
@@ -21,13 +23,13 @@ sudo mount -t nfs4 1.1.1.1:/mountpoint /target/mount
2123
#### From Source
2224

2325
```
24-
$ go get github.com/gondor/docker-volume-netshare
26+
$ go get github.com/ContainX/docker-volume-netshare
2527
$ go build
2628
```
2729

2830
#### From Binaries
2931

30-
Binaries are available through GitHub releases. You can download the appropriate binary, package and version from the [Releases](https://github.com/gondor/docker-volume-netshare/releases) page
32+
Binaries are available through GitHub releases. You can download the appropriate binary, package and version from the [Releases](https://github.com/ContainX/docker-volume-netshare/releases) page
3133

3234
#### On Ubuntu / Debian
3335

@@ -36,7 +38,7 @@ The method below will install the sysvinit and /etc/default options that can be
3638
1. Install the Package
3739

3840
```
39-
$ wget https://github.com/gondor/docker-volume-netshare/releases/download/v0.16/docker-volume-netshare_0.16_amd64.deb
41+
$ wget https://github.com/ContainX/docker-volume-netshare/releases/download/v0.16/docker-volume-netshare_0.16_amd64.deb
4042
$ sudo dpkg -i docker-volume-netshare_0.16_amd64.deb
4143
```
4244

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/gondor/docker-volume-netshare/netshare"
4+
"github.com/ContainX/docker-volume-netshare/netshare"
55
)
66

77
var VERSION string = ""

netshare/netshare.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
log "github.com/Sirupsen/logrus"
66
"github.com/docker/go-plugins-helpers/volume"
7-
"github.com/gondor/docker-volume-netshare/netshare/drivers"
7+
"github.com/ContainX/docker-volume-netshare/netshare/drivers"
88
"github.com/spf13/cobra"
99
"os"
1010
"path/filepath"

support/systemd/lib/systemd/system/docker-volume-netshare.service

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
[Unit]
22
Description=Docker NFS, AWS EFS & Samba/CIFS Volume Plugin
3+
<<<<<<< HEAD
4+
Documentation=https://github.com/ContainX/docker-volume-netshare
5+
After=nfs-utils.service docker.service
6+
Requires=docker.service
7+
=======
38
Documentation=https://github.com/gondor/docker-volume-netshare
49
After=nfs-utils.service
510
Before=docker.service
611
Requires=nfs-utils.service
12+
>>>>>>> b23fe656606d7043631ecf7c5e8f60cbd3185972
713

814

915
[Service]

vendor/vendor.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
"revisionTime": "2016-02-10T13:55:59Z"
2222
}
2323
],
24-
"rootPath": "github.com/gondor/docker-volume-netshare"
24+
"rootPath": "github.com/ContainX/docker-volume-netshare"
2525
}

0 commit comments

Comments
 (0)