https://github.com/idevsig/filetas
基于 Rust + axum 的文件传输加速服务 (File transfer acceleration service)
git clone https://github.com/idevsig/filetas.git
开发环境
cargo run
Listening on 0.0.0.0:8000
生产环境
cargo build --release
./target/release/filetas
Listening on 0.0.0.0:8000
| Registry | Image |
|---|---|
| Docker Hub | idevsig/filetas |
| GitHub Container Registry | ghcr.io/idevsig/filetas |
# docker.io
docker run -p 8000:8000 -d idevsig/filetas:python
# ghcr.io
docker run -p 8000:8000 -d ghcr.io/idevsig/filetas:python
docker build -t filetas .
docker run -p 8000:8000 -d filetas
docker-compose.yml
参考:https://git.jetsung.com/jetsung/docker-compose/-/tree/main/filetas
services:
filetas:
image: idevsig/filetas:latest
container_name: filetas
restart: unless-stopped
ports:
- 8000:8000
Content type
Image
Digest
sha256:a632267b0…
Size
13 MB
Last updated
3 months ago
docker pull idevsig/filetas