forked from tobilg/minio-dcos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarathon.json
54 lines (54 loc) · 1.04 KB
/
marathon.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"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": "tobilg/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"
}
}