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

https://github.com/jamesnetherton/sftp-server


https://github.com/jamesnetherton/sftp-server

Last synced: 28 days ago
JSON representation

Awesome Lists containing this project

README

        

### Test SFTP server

A fake SFTP server container for **_test & example purposes. It is not suitable for production usage_**.

### Build & test

```
./mvnw clean verify
```

### Container image build
```
./mvnw clean verify
docker build -t jamesnetherton/sftp-server .
```

### Running locally

```
docker run -ti --rm -e FTP_USER=admin -e FTP_PASSWORD=p4ssword -p 2222:2222 jamesnetherton/sftp-server
```