Skip to content

Instantly share code, notes, and snippets.

@ramosmerino
Created September 22, 2025 03:38
Show Gist options
  • Select an option

  • Save ramosmerino/6f58843bee5e00737feb23c42144fdb0 to your computer and use it in GitHub Desktop.

Select an option

Save ramosmerino/6f58843bee5e00737feb23c42144fdb0 to your computer and use it in GitHub Desktop.
MinIO docker-compose
version: '3.9'
services:
minio:
image: docker.io/bitnami/minio:2024
ports:
- '9000:9000'
- '9001:9001'
networks:
- minionetwork
volumes:
- 'minio_data:/data'
environment:
- MINIO_ROOT_USER=
- MINIO_ROOT_PASSWORD=
- MINIO_DEFAULT_BUCKETS=
networks:
minionetwork:
driver: bridge
volumes:
minio_data:
driver: local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment