https://github.com/pocesar/rust-minimal-server-docker
A tiny webserver that runs on Docker to serve your files
https://github.com/pocesar/rust-minimal-server-docker
Last synced: 9 months ago
JSON representation
A tiny webserver that runs on Docker to serve your files
- Host: GitHub
- URL: https://github.com/pocesar/rust-minimal-server-docker
- Owner: pocesar
- License: mit
- Created: 2023-05-29T17:27:18.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-30T05:18:20.000Z (about 3 years ago)
- Last Synced: 2025-10-08T21:34:37.234Z (9 months ago)
- Language: Rust
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rust-minimal-server-docker
A tiny and low memory file server that runs on Docker to serve your files
## Usage
```bash
docker run --rm -v /some/folder:/serve -p 8080:8080 ghcr.io/pocesar/rust-minimal-server-docker:latest \
--pattern "*.zip"
```
To match all files in all folders, use:
```bash
--pattern "**/*.zip"
```
## License
MIT