Minio

version: '3'

services:
  minio:
    image: docker.io/bitnami/minio:2022
    ports:
      - '9000:9000'
      - '9001:9001'
    networks:
      - minionetwork
    volumes:
      - 'minio_data:/data'
    env_file:
      - .env

networks:
  minionetwork:
    driver: bridge

volumes:
  minio_data:
    driver: local

.env

MINIO_ROOT_USER=admin
MINIO_ROOT_PASSWORD=minio
MINIO_DEFAULT_BUCKETS=bucket
Emil Moe

Software- and Data Engineer

I created this website to help you empower your infrastructure and so you don't need to spend the same amount of hours as me on researching. I chose to make the site ad-free, so if you like what I do, please consider supporting my Patreon.

Leave a Reply

Your email address will not be published. Required fields are marked *