Manage your self-hosted, S3-compatible distributed object storage service through a clean and intuitive administrative interface. This lightweight web dashboard provides direct visibility into your storage infrastructure, making it easy to monitor system health and configure cluster layouts without relying strictly on command-line tools.
Key capabilities include:
Deploy the interface quickly using a standalone binary or Docker container. It seamlessly integrates with your existing configuration files or environment variables, and supports basic authentication to keep your storage infrastructure secure.
services:
garage:
image: dxflrs/garage:v2.0.0
container_name: garage
volumes:
- ./garage.toml:/etc/garage.toml
- ./meta:/var/lib/garage/meta
- ./data:/var/lib/garage/data
restart: unless-stopped
ports:
- 3900:3900
- 3901:3901
- 3902:3902
- 3903:3903
webui:
image: khairul169/garage-webui:latest
container_name: garage-webui
restart: unless-stopped
volumes:
- ./garage.toml:/etc/garage.toml:ro
ports:
- 3909:3909
environment:
API_BASE_URL: "http://garage:3903"
S3_ENDPOINT_URL: "http://garage:3900"API_ADMIN_KEYAuto-fetched about 23 hours ago
Auto-fetched about 23 hours ago