An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

[![Docker build](https://github.com/tailsdotcom/docker-sftp/actions/workflows/ci.yml/badge.svg)](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.