Skip to content

Instantly share code, notes, and snippets.

@barbarbar338
Last active October 4, 2025 06:52
Show Gist options
  • Select an option

  • Save barbarbar338/25b536bb65eba64afe3d1af3fc6f295a to your computer and use it in GitHub Desktop.

Select an option

Save barbarbar338/25b536bb65eba64afe3d1af3fc6f295a to your computer and use it in GitHub Desktop.
MinIO with OpenMaxIO web interface
services:
minio:
image: quay.io/minio/minio:latest
command: server /data --console-address ":9001"
restart: unless-stopped
healthcheck:
disable: true
ports:
- 9000:9000
- 9001:9001
environment:
MINIO_ROOT_USER: <ROOT_USER>
MINIO_ROOT_PASSWORD: <ROOT_PASS>
MINIO_REGION: eu-west-1
volumes:
- minio_data:/data
networks:
- minio_network
openmaxio:
image: ghcr.io/huncrys/minio-console:latest
healthcheck:
disable: true
command: server --port 9002
restart: unless-stopped
environment:
CONSOLE_PBKDF_PASSPHRASE: <SECRET>
CONSOLE_PBKDF_SALT: <SECRET>
CONSOLE_MINIO_SERVER: http://minio:9000
CONSOLE_MINIO_REGION: eu-west-1
networks:
- minio_network
ports:
- 9002:9002
networks:
minio_network:
volumes:
minio_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment