mirror of
https://github.com/minio/minio.git
synced 2025-11-20 18:06:10 -05:00
Update filename (#3995)
This commit is contained in:
committed by
Harshavardhana
parent
9ee83b89bb
commit
d99efa2c93
38
docs/orchestration/docker-compose/docker-compose.yaml
Normal file
38
docs/orchestration/docker-compose/docker-compose.yaml
Normal file
@@ -0,0 +1,38 @@
|
||||
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:RELEASE.2017-03-16T21-50-32Z
|
||||
ports:
|
||||
- "9001:9000"
|
||||
environment:
|
||||
MINIO_ACCESS_KEY: minio
|
||||
MINIO_SECRET_KEY: minio123
|
||||
command: server http://minio1/myexport http://minio2/myexport http://minio3/myexport http://minio4/myexport
|
||||
minio2:
|
||||
image: minio/minio:RELEASE.2017-03-16T21-50-32Z
|
||||
ports:
|
||||
- "9002:9000"
|
||||
environment:
|
||||
MINIO_ACCESS_KEY: minio
|
||||
MINIO_SECRET_KEY: minio123
|
||||
command: server http://minio1/myexport http://minio2/myexport http://minio3/myexport http://minio4/myexport
|
||||
minio3:
|
||||
image: minio/minio:RELEASE.2017-03-16T21-50-32Z
|
||||
ports:
|
||||
- "9003:9000"
|
||||
environment:
|
||||
MINIO_ACCESS_KEY: minio
|
||||
MINIO_SECRET_KEY: minio123
|
||||
command: server http://minio1/myexport http://minio2/myexport http://minio3/myexport http://minio4/myexport
|
||||
minio4:
|
||||
image: minio/minio:RELEASE.2017-03-16T21-50-32Z
|
||||
ports:
|
||||
- "9004:9000"
|
||||
environment:
|
||||
MINIO_ACCESS_KEY: minio
|
||||
MINIO_SECRET_KEY: minio123
|
||||
command: server http://minio1/myexport http://minio2/myexport http://minio3/myexport http://minio4/myexport
|
||||
Reference in New Issue
Block a user