https://github.com/jamesnetherton/sftp-server
https://github.com/jamesnetherton/sftp-server
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jamesnetherton/sftp-server
- Owner: jamesnetherton
- License: apache-2.0
- Created: 2022-11-21T14:39:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-01T06:09:42.000Z (about 1 month ago)
- Last Synced: 2025-04-15T06:44:26.348Z (28 days ago)
- Language: Java
- Size: 106 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```