Files
templates/blueprints/rustfs/docker-compose.yml
2025-12-07 03:46:38 -06:00

21 lines
447 B
YAML

version: "3.8"
services:
rustfs:
image: rustfs/rustfs:latest
volumes:
- rustfs-data:/data
environment:
- RUSTFS_ACCESS_KEY
- RUSTFS_SECRET_KEY
- RUSTFS_ADDRESS=0.0.0.0:9000
- RUSTFS_CONSOLE_ADDRESS=0.0.0.0:9001
- RUSTFS_CONSOLE_ENABLE=true
- RUSTFS_CORS_ALLOWED_ORIGINS=*
- RUSTFS_CONSOLE_CORS_ALLOWED_ORIGINS=*
command: /data
restart: unless-stopped
volumes:
rustfs-data: