Update for komodo
This commit is contained in:
42
minio/compose.yaml
Normal file
42
minio/compose.yaml
Normal file
@@ -0,0 +1,42 @@
|
||||
services:
|
||||
minio:
|
||||
container_name: minio
|
||||
image: docker.io/minio/minio:RELEASE.2025-07-23T15-54-02Z
|
||||
restart: unless-stopped
|
||||
command: server /data
|
||||
user: ${PUID}:${PGID}
|
||||
environment:
|
||||
- MINIO_ROOT_USER=${MINIO_ROOT_USER}
|
||||
- MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD}
|
||||
- MINIO_SERVER_URL=${MINIO_SERVER_URL}
|
||||
- MINIO_BROWSER_REDIRECT_URL=${MINIO_BROWSER_REDIRECT_URL}
|
||||
volumes:
|
||||
- ${APPDATA_PATH}/minio/data:/data
|
||||
ports:
|
||||
- ${API_PORT}:9000
|
||||
networks:
|
||||
- frontend
|
||||
healthcheck:
|
||||
test: ["CMD", "mc", "ready", "local"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
start_period: 10s
|
||||
|
||||
minio-console:
|
||||
container_name: minio-console
|
||||
image: ghcr.io/georgmangold/console:v1.8.1
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
minio:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
- CONSOLE_MINIO_SERVER=http://minio:9000
|
||||
ports:
|
||||
- ${CONSOLE_PORT}:9090
|
||||
networks:
|
||||
- frontend
|
||||
|
||||
networks:
|
||||
frontend:
|
||||
external: true
|
||||
Reference in New Issue
Block a user