mirror of
https://github.com/minio/minio.git
synced 2024-12-24 06:05:55 -05:00
a1f922315b
Serves as a starting point to run a Minio cluster using Docker. The file can be used as configuration for the docker-compose tool to start 4 Minio servers in distributed mode. * Add a docker-compose.yml file to run 4 minio server instances in distributed mode * Update Docker.md with command to use the file
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
version: '2'
|
|
|
|
# starts 4 docker containers running minio server instances. Each
|
|
# minio server's web interface will be accessible on the host at port
|
|
# 9001 through 9004.
|
|
services:
|
|
minio1:
|
|
image: minio/minio
|
|
ports:
|
|
- "9001:9000"
|
|
volumes:
|
|
- /mnt/export/minio1:/export
|
|
environment:
|
|
MINIO_ACCESS_KEY: abcd1
|
|
MINIO_SECRET_KEY: abcd1234
|
|
command: minio1:/export minio2:/export minio3:/export minio4:/export
|
|
minio2:
|
|
image: minio/minio
|
|
ports:
|
|
- "9002:9000"
|
|
volumes:
|
|
- /mnt/export/minio2:/export
|
|
environment:
|
|
MINIO_ACCESS_KEY: abcd1
|
|
MINIO_SECRET_KEY: abcd1234
|
|
command: minio1:/export minio2:/export minio3:/export minio4:/export
|
|
minio3:
|
|
image: minio/minio
|
|
ports:
|
|
- "9003:9000"
|
|
volumes:
|
|
- /mnt/export/minio3:/export
|
|
environment:
|
|
MINIO_ACCESS_KEY: abcd1
|
|
MINIO_SECRET_KEY: abcd1234
|
|
command: minio1:/export minio2:/export minio3:/export minio4:/export
|
|
minio4:
|
|
image: minio/minio
|
|
ports:
|
|
- "9004:9000"
|
|
volumes:
|
|
- /mnt/export/minio4:/export
|
|
environment:
|
|
MINIO_ACCESS_KEY: abcd1
|
|
MINIO_SECRET_KEY: abcd1234
|
|
command: minio1:/export minio2:/export minio3:/export minio4:/export
|