0
1

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 3 years have passed since last update.

MinIOをdocker-composeで構築する。

Posted at
  minio:
    image: minio/minio
    ports:
      - "9000:9000" // API用
      - "9001:9001" // コンソール画面用
    environment:
      MINIO_ROOT_USER: minio            
      MINIO_ROOT_PASSWORD: miniosecret  
    command: server /export --address :9000 --console-address :9001

command--address :9000でAPIのポート番号を指定し、--console-address :9001でコンソール画面のポート番号を指定しています。

コンソール画面に遷移するために、localhost:9001を開くとログイン画面に遷移する。

そこで、ユーザー名とパスワードを入力すればログインが可能

      MINIO_ROOT_USER: minio            
      MINIO_ROOT_PASSWORD: miniosecret  
0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?