Initial vault setup
This commit is contained in:
@@ -0,0 +1,86 @@
|
||||
---
|
||||
title: RustFS
|
||||
created: 2026-06-08
|
||||
updated: 2026-06-08
|
||||
type: app
|
||||
tags: [catalogue, object-storage, s3, rust, app-marathon3-batch-a]
|
||||
confidence: medium
|
||||
contested: false
|
||||
sources: [https://selfh.st/apps/?tag=Object+Storage, https://github.com/rustfs/rustfs]
|
||||
---
|
||||
|
||||
# 📦 RustFS
|
||||
|
||||
> Implémentation S3-compatible écrite en Rust, alternative moderne à MinIO.
|
||||
|
||||
## 📋 Informations Générales
|
||||
|
||||
| Champ | Valeur |
|
||||
| :--- | :--- |
|
||||
| **Site web** | [github.com/rustfs/rustfs](https://github.com/rustfs/rustfs) |
|
||||
| **GitHub** | [rustfs/rustfs](https://github.com/rustfs/rustfs) |
|
||||
| **License** | Apache-2.0 |
|
||||
| **Langage** | Rust |
|
||||
| **Étoiles GitHub** | 0.5k ⭐ |
|
||||
| **Catégorie** | [[cat-object-storage|Object Storage]] |
|
||||
|
||||
## 📝 Description
|
||||
|
||||
**RustFS** est une implémentation S3-compatible écrite en Rust, conçue comme une alternative moderne à MinIO. Performances élevées, faible empreinte mémoire, sécurité mémoire (garantie par Rust). API compatible S3v4.
|
||||
|
||||
**Différence vs MinIO** : RustFS mise sur **Rust** pour perf et sécurité. MinIO est Go, plus mature mais plus lourd. Projet récent, à évaluer pour la prod.
|
||||
|
||||
**Pour qui** : utilisateurs qui veulent un S3-compatible en Rust, prêts à adopter un projet jeune.
|
||||
|
||||
## 🚀 Installation
|
||||
|
||||
### Docker Compose
|
||||
|
||||
```yaml
|
||||
version: '3.8'
|
||||
services:
|
||||
rustfs:
|
||||
image: ghcr.io/rustfs/rustfs:latest
|
||||
container_name: rustfs
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "9000:9000" # S3 API
|
||||
- "9001:9001" # Console
|
||||
environment:
|
||||
- RUSTFS_ACCESS_KEY=minioadmin
|
||||
- RUSTFS_SECRET_KEY=*** - RUSTFS_REGION=us-east-1
|
||||
volumes:
|
||||
- ./data:/data
|
||||
labels:
|
||||
traefik.enable: "true"
|
||||
traefik.http.routers.rustfs.rule: "Host(`s3.example.com`)"
|
||||
traefik.http.routers.rustfs.tls.certresolver: letsencrypt
|
||||
```
|
||||
|
||||
## 🔄 Alternatives
|
||||
|
||||
### Open Source
|
||||
- **MinIO** — Leader S3-compatible
|
||||
- [[app-seaweedfs]] — S3 distribué
|
||||
- [[app-garage]] — S3 edge
|
||||
- [[app-versitygw]] — Passerelle S3
|
||||
- **Ceph RGW** — S3 distribué enterprise
|
||||
|
||||
### Propriétaires
|
||||
- **AWS S3** — Référence
|
||||
- **Cloudflare R2**
|
||||
|
||||
## 🔐 Sécurité
|
||||
- **IAM S3** : clés access/secret
|
||||
- **TLS** : recommandé
|
||||
- **Bucket policies** : compatibles S3
|
||||
- **Audit logs** : supportés
|
||||
|
||||
## 📚 Ressources
|
||||
- [GitHub RustFS](https://github.com/rustfs/rustfs)
|
||||
- [Documentation](https://rustfs.com/docs)
|
||||
|
||||
## Pages Liées
|
||||
- [[cat-object-storage]] — Catégorie Object Storage
|
||||
- **MinIO** — Concurrent Go
|
||||
- [[recettes-docker-compose]] — Templates Docker
|
||||
Reference in New Issue
Block a user