mirror of
https://github.com/rodneyosodo/homelab.git
synced 2026-08-07 07:15:03 +00:00
00a9ffdf8e
Signed-off-by: Rodney Osodo <socials@rodneyosodo.com>
24 lines
595 B
YAML
24 lines
595 B
YAML
services:
|
|
minio:
|
|
image: quay.io/minio/minio:RELEASE.2025-04-08T15-41-24Z
|
|
container_name: minio
|
|
restart: unless-stopped
|
|
networks:
|
|
- homelab-network
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
command: server /data --console-address ":9001"
|
|
ports:
|
|
- 4050:9000
|
|
- 4051:9001
|
|
environment:
|
|
- MINIO_ROOT_USER=${MINIO_ROOT_USER}
|
|
- MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD}
|
|
healthcheck:
|
|
test: ["CMD", "mc", "ready", "local"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
volumes:
|
|
- ~/docker-volumes/minio:/data
|