https://github.com/chrisrx/docker-sshd
Docker container to run OpenSSH server with chrooted user access
https://github.com/chrisrx/docker-sshd
Last synced: 3 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-24T12:36:34.000Z (over 9 years ago)
- Last Synced: 2025-01-21T13:11:16.440Z (5 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- 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
```