mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-17 23:53:14 +02:00
feat: add Docker Compose deployments for SeaweedFS, Ceph, and RustFS
This commit is contained in:
28
deployments/rustfs/docker-compose.yml
Normal file
28
deployments/rustfs/docker-compose.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||
# 🚀 BUILT & MAINTAINED BY THE ALTSTACK
|
||||
# 🌍 https://thealtstack.com
|
||||
# 💡 Open-source deployment templates for modern self-hosting.
|
||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||
|
||||
# RustFS: High-performance S3-compatible object storage written in Rust.
|
||||
# Modern, safe, and extremely fast alternative to MinIO.
|
||||
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
rustfs:
|
||||
image: rustfs/rustfs:latest
|
||||
container_name: rustfs
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "9000:9000" # S3 API
|
||||
- "9001:9001" # Web Console
|
||||
environment:
|
||||
- RUSTFS_ACCESS_KEY=admin
|
||||
- RUSTFS_SECRET_KEY=password123
|
||||
- RUSTFS_VOLUMES=/data
|
||||
volumes:
|
||||
- rustfs_data:/data
|
||||
|
||||
volumes:
|
||||
rustfs_data:
|
||||
Reference in New Issue
Block a user