Files
docker-compose/minio/compose.yaml
T

43 lines
1.2 KiB
YAML
Raw Normal View History

2025-07-13 22:11:55 +05:30
services:
minio:
container_name: minio
2025-11-18 19:36:53 +05:30
image: docker.io/minio/minio:RELEASE.2025-09-07T16-13-09Z@sha256:14cea493d9a34af32f524e538b8346cf79f3321eff8e708c1e2960462bd8936e
2025-07-19 20:30:14 +05:30
restart: unless-stopped
command: server /data
user: ${PUID}:${PGID}
2025-07-13 22:11:55 +05:30
environment:
2025-07-19 20:30:14 +05:30
- MINIO_ROOT_USER=${MINIO_ROOT_USER}
- MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD}
2025-07-31 21:01:09 +05:30
- MINIO_SERVER_URL=${MINIO_SERVER_URL}
- MINIO_BROWSER_REDIRECT_URL=${MINIO_BROWSER_REDIRECT_URL}
2025-07-13 22:11:55 +05:30
volumes:
2025-07-19 20:30:14 +05:30
- ${APPDATA_PATH}/minio/data:/data
2025-07-13 22:11:55 +05:30
ports:
2025-07-19 20:30:14 +05:30
- ${API_PORT}:9000
2025-08-02 12:13:52 +05:30
networks:
- frontend
2025-07-16 22:35:04 +05:30
healthcheck:
test: ["CMD", "mc", "ready", "local"]
2025-07-20 15:49:39 +05:30
interval: 10s
2025-07-16 22:35:04 +05:30
timeout: 5s
2025-07-20 15:49:39 +05:30
retries: 3
start_period: 10s
2025-07-13 22:11:55 +05:30
2025-07-14 21:30:31 +05:30
minio-console:
container_name: minio-console
image: ghcr.io/georgmangold/console:v1.9.1@sha256:388438668d65b887f99e36b95ba7eb96486e6d6fe28c84b1743be888e1b48877
2025-07-19 20:30:14 +05:30
restart: unless-stopped
2025-07-16 22:35:04 +05:30
depends_on:
minio:
condition: service_healthy
2025-07-14 21:30:31 +05:30
environment:
2025-07-19 20:30:14 +05:30
- CONSOLE_MINIO_SERVER=http://minio:9000
2025-07-14 21:30:31 +05:30
ports:
2025-07-19 20:30:14 +05:30
- ${CONSOLE_PORT}:9090
2025-08-02 12:13:52 +05:30
networks:
- frontend
networks:
frontend:
external: true