Created
May 16, 2017 11:34
-
-
Save hackintoshrao/1836b009d33f31f09c070c5dfb7d3c9f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "id": "/minio-dcos", | |
| "instances": 4, | |
| "cpus": 0.5, | |
| "mem": 512, | |
| "container": { | |
| "type": "DOCKER", | |
| "volumes": [ | |
| { | |
| "containerPath": "miniodata", | |
| "mode": "RW", | |
| "persistent": { | |
| "type": "root", | |
| "size": 1000 | |
| } | |
| }, | |
| { | |
| "containerPath": "/export", | |
| "hostPath": "miniodata", | |
| "mode": "RW" | |
| }, | |
| { | |
| "containerPath": "minioconfig", | |
| "mode": "RW", | |
| "persistent": { | |
| "type": "root", | |
| "size": 10 | |
| } | |
| }, | |
| { | |
| "containerPath": "/root/.minio", | |
| "hostPath": "minioconfig", | |
| "mode": "RW" | |
| } | |
| ], | |
| "docker": { | |
| "image": "hackintoshrao/minio-dcos", | |
| "network": "USER", | |
| "privileged": false, | |
| "forcePullImage": true | |
| } | |
| }, | |
| "ipAddress":{ | |
| "networkName":"dcos" | |
| }, | |
| "residency": { | |
| "taskLostBehavior": "WAIT_FOREVER", | |
| "relaunchEscalationTimeoutSeconds": 120 | |
| }, | |
| "env": { | |
| "MINIO_ACCESS_KEY": "miniotest", | |
| "MINIO_SECRET_KEY": "secret123" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment