minio/docs/orchestration/docker-compose
2020-02-27 00:32:47 +00:00
..
docker-compose.yaml Update yaml files to latest version RELEASE.2020-02-27T00-23-05Z 2020-02-27 00:32:47 +00:00
README.md Removes the incorrect coverage badge from the docs (#7651) 2019-05-16 12:11:49 +05:30

Deploy MinIO on Docker Compose Slack Go Report Card Docker Pulls

Docker Compose allows defining and running single host, multi-container Docker applications.

With Compose, you use a Compose file to configure MinIO services. Then, using a single command, you can create and launch all the Distributed MinIO instances from your configuration. Distributed MinIO instances will be deployed in multiple containers on the same host. This is a great way to set up development, testing, and staging environments, based on Distributed MinIO.

1. Prerequisites

  • Familiarity with Docker Compose.
  • Docker installed on your machine. Download the relevant installer from here.

2. Run Distributed MinIO on Docker Compose

To deploy Distributed MinIO on Docker Compose, please download docker-compose.yaml to your current working directory. Note that Docker Compose pulls the MinIO Docker image, so there is no need to explicitly download MinIO binary. Then run one of the below commands

GNU/Linux and macOS

docker-compose pull
docker-compose up

Windows

docker-compose.exe pull
docker-compose.exe up

Each instance is now accessible on the host at ports 9001 through 9004, proceed to access the Web browser at http://127.0.0.1:9001/

Notes

  • By default the Docker Compose file uses the Docker image for latest MinIO server release. You can change the image tag to pull a specific MinIO Docker image.

  • There are 4 minio distributed instances created by default. You can add more MinIO services (up to total 16) to your MinIO Compose deployment. To add a service

    • Replicate a service definition and change the name of the new service appropriately.
    • Update the command section in each service.
    • Update the port number to exposed for the new service. Also, make sure the port assigned for the new service is not already being used on the host.

    Read more about distributed MinIO here.

  • MinIO services in the Docker compose file expose ports 9001 to 9004. This allows multiple services to run on a host.

Explore Further