mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-17 21:53:12 +02:00
29 lines
1.1 KiB
YAML
29 lines
1.1 KiB
YAML
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
# 🚀 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.
|
|
# Drop-in MinIO replacement with better performance and permissive licensing.
|
|
|
|
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=changeme123
|
|
- RUSTFS_VOLUMES=/data
|
|
- RUSTFS_ADDRESS=:9000
|
|
- RUSTFS_CONSOLE_ADDRESS=:9001
|
|
volumes:
|
|
- rustfs_data:/data
|
|
|
|
volumes:
|
|
rustfs_data:
|