You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 19, 2022. It is now read-only.
This plugin allows you to mount remote folder using sshfs in your container easily.
Usage
Using a password
1 - Install the plugin
$ docker plugin install vieux/sshfs# or to enable debug docker plugin install vieux/sshfs DEBUG=1# or to change where plugin state is storeddocker plugin install vieux/sshfs state.source=<any_folder>
2 - Create a volume
Make sure thesource path on the ssh server was exists.
$ docker run -it -v sshvolume:<path> busybox ls <path>
Using an ssh key
1 - Install the plugin
$ docker plugin install vieux/sshfs sshkey.source=/home/<user>/.ssh/# or to enable debug docker plugin install vieux/sshfs DEBUG=1 sshkey.source=/home/<user>/.ssh/# or to change where plugin state is storeddocker plugin install vieux/sshfs state.source=<any_folder> sshkey.source=/home/<user>/.ssh/
2 - Create a volume
Make sure thesource path on the ssh server was exists.