https://github.com/chrisrx/docker-sshd
Docker container to run OpenSSH server with chrooted user access
https://github.com/chrisrx/docker-sshd
Last synced: 5 months ago
JSON representation
Docker container to run OpenSSH server with chrooted user access
- Host: GitHub
- URL: https://github.com/chrisrx/docker-sshd
- Owner: ChrisRx
- License: mit
- Created: 2016-02-24T12:21:19.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-24T12:36:34.000Z (almost 10 years ago)
- Last Synced: 2025-03-14T20:33:30.857Z (9 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-sshd
Docker container to run OpenSSH server with chrooted user access [WIP]
# Build
```Shell
docker build -t docker-sshd .
```
# Run
```Shell
docker create -v /jails --name docker-sshd-data docker-sshd
docker run --volumes-from docker-sshd-data docker-sshd
```
or
```Shell
docker run -v "./data:/jails" docker-sshd
```