6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

S3互換のminioをdocker-composeで起動(今更)

Posted at

使い方

S3 をローカルで建てる用
急いでる人はgithubを読んでくれ

経緯(TL;DR)

S3 が世界標準になりつつある。
互換のあるシステムがたくさん出てきた。
ローカルで建てれるものが必要になる機会も増えた。
OSS の minio を使うことが増えた
そこでテンプレ化しましょう。
minioを読んでください

依存

依存してるライブラリは以下です

  • docker-compose
  • docker

結論

以下の構成で動かすのが最小構成

tree
.
├── .env
└── docker-compose.yml

設定ファイル

以下のようにすると良い

docker-compose.yml
version: "3"
services:
  minio:
    image: minio/minio:latest
    ports:
      - ${MINIO_PORT:-9000}:9000
      - ${MINIO_CONSOLE_PORT:-9001}:9001
    volumes:
      - ./.data/minio/data:/export
      - ./.data/minio/config:/root/.minio
    environment:
      MINIO_ACCESS_KEY: ${MINIO_ACCESS_KEY:-minio}
      MINIO_SECRET_KEY: ${MINIO_SECRET_KEY:-minio123}
    command: server /export --console-address ":9001"
  createbuckets:
    image: minio/mc
    depends_on:
      - minio
    entrypoint: >
      /bin/sh -c "
      until (/usr/bin/mc config host add myminio http://minio:9000 ${MINIO_ACCESS_KEY:-minio} ${MINIO_SECRET_KEY:-minio123}) do echo '...waiting...' && sleep 1; done;
      /usr/bin/mc mb myminio/${MINIO_BUCKET_NAME:-mybucket};
      /usr/bin/mc policy download myminio/${MINIO_BUCKET_NAME:-mybucket};
      exit 0;
      "

環境変数

.env ファイルを用意しましょう。
MINIO_ACCESS_KEY MINIO_SECRET_KEY は秘匿情報なので、適宜変えてください。
password generatorとかでも良いので。

.env
MINIO_ACCESS_KEY=bbFJoygjrP5BdqnQ
MINIO_SECRET_KEY=CAMHACH4bFlr0R2E
MINIO_BUCKET_NAME=mybucket
MINIO_PORT=9000
MINIO_CONSOLE_PORT=9001

起動

裏で実行する場合は-dをつけて!

bash
## cd /path/to/app

docker-compose up
## macの場合は以下
## docker compose up

## 裏で実行する場合は-d をつけて!
## docker-compose up -d

確認

ブラウザからhttp://localhost:9000を開きましょう
usernamepasswordMINIO_ACCESS_KEYMINIO_SECRET_KEYで設定した値です
Screenshot 2023-04-14 at 14.25.03.png

6
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?