Sign inSign up

himelranaswe/minio

By himelranaswe

Updated over 2 years ago

MinIO Docker image. Object Storage based on MinIO

Image
0

110

himelranaswe/minio repository overview

Here is an example how you can deploy your minio object storage server

  • create a docker-compose.yml file with the contents below
version: '3.8'
services:
  minio:
    image: 'himelranaswe/minio:stable'
    container_name: minio
    volumes:
      - ./minio-data:/data
    environment:
      MINIO_ROOT_USER: your_root_user
      MINIO_ROOT_PASSWORD: your_root_password
      MINIO_SERVER_URL: https://storage.yourdomain.com
    command: server /data --console-address ":9090"
  nginx:
    image: 'himelranaswe/nginx-proxy-manager:stable'
    restart: unless-stopped
    ports:
      - '80:80'
      - '81:81'
      - '443:443'
    volumes:
      - ./nginx-data:/data
      - ./nginx-letsencrypt:/etc/letsencrypt

  • run following command
docker compose up -d
This is a clone of minio official image for stability
Nginx Proxy Manager Login Info
http://ip:81
Email: [email protected]
Password: changeme

Tag summary

Content type

Image

Digest

sha256:69321d5da

Size

50.3 MB

Last updated

over 2 years ago

docker pull himelranaswe/minio:stable