Skip to content
This repository was archived by the owner on Oct 19, 2022. It is now read-only.

Commit 4dbf79b

Browse files
committed
change path
Signed-off-by: Victor Vieux <[email protected]>
1 parent 22864c1 commit 4dbf79b

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

.travis/integration.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ sudo docker volume rm sshvolume
6262
sudo docker plugin disable vieux/sshfs:$TAG
6363
sudo docker plugin set vieux/sshfs:$TAG sshkey.source=`pwd`/.travis/ssh/
6464
sudo docker plugin enable vieux/sshfs:$TAG
65-
sudo docker volume create -d vieux/sshfs:$TAG -o sshcmd=root@localhost:/ -o port=2222 -o IdentityFile=/.ssh/key sshvolume
65+
sudo docker volume create -d vieux/sshfs:$TAG -o sshcmd=root@localhost:/ -o port=2222 sshvolume
6666
sudo docker run --rm -v sshvolume:/write busybox sh -c "echo hello > /write/world"
6767
sudo docker run --rm -v sshvolume:/read busybox grep -Fxq hello /read/world
6868
#sudo cat /var/lib/docker/plugins/sshfs-state.json

.travis/ssh/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
FROM rastasheep/ubuntu-sshd
2-
COPY key.pub /root/.ssh/authorized_keys
2+
COPY id_rsa.pub /root/.ssh/authorized_keys
File renamed without changes.
File renamed without changes.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ CMD ["/go/bin/docker-volume-sshfs"]
1010

1111
FROM alpine
1212
RUN apk update && apk add sshfs
13-
RUN mkdir -p /run/docker/plugins /mnt/state /mnt/volumes .ssh
13+
RUN mkdir -p /run/docker/plugins /mnt/state /mnt/volumes
1414
COPY --from=builder /go/bin/docker-volume-sshfs .
1515
CMD ["docker-volume-sshfs"]

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"type": "bind"
4444
},
4545
{
46-
"destination": "/.ssh",
46+
"destination": "/root/.ssh",
4747
"options": [
4848
"rbind"
4949
],

0 commit comments

Comments
 (0)