https://github.com/phwoolcon/sshfs
SSHFS server docker image
https://github.com/phwoolcon/sshfs
docker-image sshfs
Last synced: about 1 year ago
JSON representation
SSHFS server docker image
- Host: GitHub
- URL: https://github.com/phwoolcon/sshfs
- Owner: phwoolcon
- License: apache-2.0
- Created: 2019-09-17T12:57:52.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-17T13:13:24.000Z (over 6 years ago)
- Last Synced: 2025-01-11T13:50:54.821Z (about 1 year ago)
- Topics: docker-image, sshfs
- Language: Shell
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Secure LAN Storage: SSHFS
==
## Installation
See [Secure LAN Storage](https://github.com/phwoolcon/docker-utils/tree/lan-storage)
## Directory structures
The `/data` volume:
```text
/data/
├── depts/
│ └── dev/
├── etc/
│ ├── fstab/
│ │ └── test -> combine into /etc/fstab
│ │
│ ├── group -> copy to /etc/ on start
│ ├── passwd -> copy to /etc/ on start
│ ├── shadow -> copy to /etc/ on start
│ └── ssh/
│ ├── ssh_host_dsa_key
│ ├── ssh_host_dsa_key.pub
│ ├── ssh_host_ecdsa_key
│ ├── ssh_host_ecdsa_key.pub
│ ├── ssh_host_ed25519_key
│ ├── ssh_host_ed25519_key.pub
│ ├── ssh_host_rsa_key
│ └── ssh_host_rsa_key.pub
├── log/
│ └── sshd.log
├── share/
└── users/
└── test/
├── me/
└── .ssh/
└── authorized_keys
```
The `/sshfs` working directory:
```text
/sshfs/
└── test/
├── 0-share/ -> bound from /data/share/
├── 1-dept/ -> bound from /data/depts/dev/
└── 2-me/ -> bound from /data/users/test/me/
```