gitlab-org--gitlab-foss/docker/marathon.json

31 lines
635 B
JSON
Raw Normal View History

2015-05-06 13:32:29 +00:00
{
"id": "/gitlab",
"ports": [0,0],
"cpus": 2,
"mem": 2048.0,
"disk": 10240.0,
"container": {
"type": "DOCKER",
"docker": {
"network": "HOST",
2015-07-10 16:32:09 +00:00
"image": "gitlab/gitlab-ce:latest"
2015-07-10 16:43:32 +00:00
},
"volumes": [
{
"containerPath": "/etc/gitlab",
"hostPath": "/var/data/etc/gitlab",
"mode": "RW"
},
{
"containerPath": "/var/opt/gitlab",
"hostPath": "/var/data/opt/gitlab",
"mode": "RW"
},
{
"containerPath": "/var/log/gitlab",
"hostPath": "/var/data/log/gitlab",
"mode": "RW"
}
]
2015-05-06 13:32:29 +00:00
}
}