mirror of
https://github.com/minio/minio.git
synced 2025-11-24 19:46:16 -05:00
added secrets to distributed swarm minio (#4374)
This commit is contained in:
93
docs/orchestration/docker-swarm/docker-compose-secrets.yaml
Normal file
93
docs/orchestration/docker-swarm/docker-compose-secrets.yaml
Normal file
@@ -0,0 +1,93 @@
|
||||
version: '3.1'
|
||||
|
||||
services:
|
||||
minio1:
|
||||
image: minio/minio:RELEASE.2017-05-05T01-14-51Z
|
||||
volumes:
|
||||
- minio1-data:/export
|
||||
ports:
|
||||
- "9001:9000"
|
||||
networks:
|
||||
- minio_distributed
|
||||
deploy:
|
||||
restart_policy:
|
||||
delay: 10s
|
||||
max_attempts: 10
|
||||
window: 60s
|
||||
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
|
||||
secrets:
|
||||
- secret_key
|
||||
- access_key
|
||||
|
||||
minio2:
|
||||
image: minio/minio:RELEASE.2017-05-05T01-14-51Z
|
||||
volumes:
|
||||
- minio2-data:/export
|
||||
ports:
|
||||
- "9002:9000"
|
||||
networks:
|
||||
- minio_distributed
|
||||
deploy:
|
||||
restart_policy:
|
||||
delay: 10s
|
||||
max_attempts: 10
|
||||
window: 60s
|
||||
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
|
||||
secrets:
|
||||
- secret_key
|
||||
- access_key
|
||||
|
||||
minio3:
|
||||
image: minio/minio:RELEASE.2017-05-05T01-14-51Z
|
||||
volumes:
|
||||
- minio3-data:/export
|
||||
ports:
|
||||
- "9003:9000"
|
||||
networks:
|
||||
- minio_distributed
|
||||
deploy:
|
||||
restart_policy:
|
||||
delay: 10s
|
||||
max_attempts: 10
|
||||
window: 60s
|
||||
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
|
||||
secrets:
|
||||
- secret_key
|
||||
- access_key
|
||||
|
||||
minio4:
|
||||
image: minio/minio:RELEASE.2017-05-05T01-14-51Z
|
||||
volumes:
|
||||
- minio4-data:/export
|
||||
ports:
|
||||
- "9004:9000"
|
||||
networks:
|
||||
- minio_distributed
|
||||
deploy:
|
||||
restart_policy:
|
||||
delay: 10s
|
||||
max_attempts: 10
|
||||
window: 60s
|
||||
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
|
||||
secrets:
|
||||
- secret_key
|
||||
- access_key
|
||||
|
||||
volumes:
|
||||
minio1-data:
|
||||
|
||||
minio2-data:
|
||||
|
||||
minio3-data:
|
||||
|
||||
minio4-data:
|
||||
|
||||
networks:
|
||||
minio_distributed:
|
||||
driver: overlay
|
||||
|
||||
secrets:
|
||||
secret_key:
|
||||
external: true
|
||||
access_key:
|
||||
external: true
|
||||
Reference in New Issue
Block a user