mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-18 02:53:15 +02:00
feat: replace MinIO with Garage for truly open-source S3 storage
This commit is contained in:
37
deployments/garage/docker-compose.yml
Normal file
37
deployments/garage/docker-compose.yml
Normal file
@@ -0,0 +1,37 @@
|
||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||
# 🚀 BUILT & MAINTAINED BY THE ALTSTACK
|
||||
# 🌍 https://thealtstack.com
|
||||
# 💡 Open-source deployment templates for modern self-hosting.
|
||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||
|
||||
# Garage: Open-source distributed object storage (S3-compatible)
|
||||
# Perfect replacement for MinIO with true AGPL open-source licensing.
|
||||
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
garage:
|
||||
image: dxflrs/garage:v1.0.1
|
||||
container_name: garage
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "3900:3900" # S3 API
|
||||
- "3901:3901" # Web API
|
||||
- "3902:3902" # Admin API
|
||||
- "3903:3903" # Cluster peering (rpc)
|
||||
environment:
|
||||
- GARAGE_RPC_BIND_ADDR=[::]:3903
|
||||
- GARAGE_RPC_PUBLIC_ADDR=127.0.0.1:3903
|
||||
- GARAGE_RPC_SECRET=YOUR_SECURE_RPC_SECRET_HERE
|
||||
- GARAGE_S3_API_BIND_ADDR=[::]:3900
|
||||
- GARAGE_S3_WEB_BIND_ADDR=[::]:3901
|
||||
- GARAGE_ADMIN_API_BIND_ADDR=[::]:3902
|
||||
- GARAGE_DATA_DIR=/var/lib/garage/data
|
||||
- GARAGE_META_DIR=/var/lib/garage/meta
|
||||
volumes:
|
||||
- garage_data:/var/lib/garage/data
|
||||
- garage_meta:/var/lib/garage/meta
|
||||
|
||||
volumes:
|
||||
garage_data:
|
||||
garage_meta:
|
||||
Reference in New Issue
Block a user