https://github.com/tailsdotcom/docker-sftp
Containerised simple SFTP
https://github.com/tailsdotcom/docker-sftp
Last synced: 10 months ago
JSON representation
Containerised simple SFTP
- Host: GitHub
- URL: https://github.com/tailsdotcom/docker-sftp
- Owner: tailsdotcom
- Created: 2024-08-21T08:09:32.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-05T12:19:57.000Z (about 1 year ago)
- Last Synced: 2025-08-17T04:33:13.699Z (10 months ago)
- Language: Go
- Size: 35.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://github.com/tailsdotcom/docker-sftp/actions/workflows/ci.yml)
# sftp-alpine
This is a fully functional SFTP/SSH server for the cost of only 17.7MB!
The default configuration has a non-privileged user `sftp` with password `DockerPassSFTP` and is exposed on port 2222.
### Example Usage
===
The following command will use physical port `2222`, detach the container to run in the background, and name the container `sftp`:
```
$ docker run -p 2222:2222 -d --name sftp tailsdotcom/docker-sftp
```
You can then run `sftp -P 2222 sftp@localhost` to connect to the container.