Quick Start Guide/User' s Guide

1.The software version is 2.1.11 or above.



Copy this configuration content directly into the "Edit Configuration" section. Some parts can be modified as needed.

version: '3'
services:
  minio:
    image: minio/minio:RELEASE.2020-10-28T08-16-50Z.hotfix.23bfe9811
    container_name: minio
    environment:
      - MINIO_ACCESS_KEY=root
      - MINIO_SECRET_KEY=admin123
      - MINIO_VOLUMES=/data
    command: minio server --address ':59090' /data
    volumes :
      - /docker/minio/data:/data
      - /docker/minio/config:/root/.minio
    networks:
      - midserver
    ports:
      - "59090:59090"
    restart: always
networks:
  midserver:

Click "Apply" to automatically download the configured image version and install it for running.


After startup, click "Details" and open the URL to access it quickly.



Content