Skip to content

Instantly share code, notes, and snippets.

@mrmrcoleman
Created December 3, 2016 00:53
Show Gist options
  • Save mrmrcoleman/7e05fa85c6016a0907995bcc70a14b76 to your computer and use it in GitHub Desktop.
Save mrmrcoleman/7e05fa85c6016a0907995bcc70a14b76 to your computer and use it in GitHub Desktop.
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:
hostname: minio1
image: minio/minio:edge
ports:
- "9001:9000"
fip: <INSERT YOUR FIP HERE>
environment:
MINIO_ACCESS_KEY: minio
MINIO_SECRET_KEY: minio123
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
minio2:
hostname: minio2
image: minio/minio:edge
ports:
- "9002:9000"
environment:
MINIO_ACCESS_KEY: minio
MINIO_SECRET_KEY: minio123
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
minio3:
hostname: minio3
image: minio/minio:edge
ports:
- "9003:9000"
environment:
MINIO_ACCESS_KEY: minio
MINIO_SECRET_KEY: minio123
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
minio4:
hostname: minio4
image: minio/minio:edge
ports:
- "9004:9000"
environment:
MINIO_ACCESS_KEY: minio
MINIO_SECRET_KEY: minio123
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
@harshavardhana
Copy link

You should remove the "edge" tag its not needed anymore.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment