Skip to content

Commit b174191

Browse files
committed
Merge pull request #40 from gondor/master
Release 0.17 - Bug fixes
2 parents a619617 + abe1e25 commit b174191

File tree

5 files changed

+5
-12
lines changed

5 files changed

+5
-12
lines changed

.goxc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"subject": "pacesys"
1010
},
1111
"publish-github": {
12-
"owner": "gondor",
12+
"owner": "ContainX",
1313
"repository": "docker-volume-netshare"
1414
},
1515
"debs": {

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 0.16
1+
VERSION = 0.17
22
GO_FMT = gofmt -s -w -l .
33
GO_XC = goxc -os="linux" -tasks-="rmbin"
44

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ The method below will install the sysvinit and /etc/default options that can be
3838
1. Install the Package
3939

4040
```
41-
$ wget https://github.com/ContainX/docker-volume-netshare/releases/download/v0.16/docker-volume-netshare_0.16_amd64.deb
42-
$ sudo dpkg -i docker-volume-netshare_0.16_amd64.deb
41+
$ wget https://github.com/ContainX/docker-volume-netshare/releases/download/v0.17/docker-volume-netshare_0.17_amd64.deb
42+
$ sudo dpkg -i docker-volume-netshare_0.17_amd64.deb
4343
```
4444

4545
2. Modify the startup options in `/etc/default/docker-volume-netshare`

netshare/netshare.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ package netshare
22

33
import (
44
"fmt"
5+
"github.com/ContainX/docker-volume-netshare/netshare/drivers"
56
log "github.com/Sirupsen/logrus"
67
"github.com/docker/go-plugins-helpers/volume"
7-
"github.com/ContainX/docker-volume-netshare/netshare/drivers"
88
"github.com/spf13/cobra"
99
"os"
1010
"path/filepath"
Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
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-
=======
83
Documentation=https://github.com/gondor/docker-volume-netshare
94
After=nfs-utils.service
105
Before=docker.service
116
Requires=nfs-utils.service
12-
>>>>>>> b23fe656606d7043631ecf7c5e8f60cbd3185972
137

148

159
[Service]
@@ -19,4 +13,3 @@ StandardOutput=syslog
1913

2014
[Install]
2115
WantedBy=multi-user.target
22-

0 commit comments

Comments
 (0)