Add volumes to marathon file.

This commit is contained in:
Sytse Sijbrandij 2015-07-10 18:43:32 +02:00
parent 14b7a8b886
commit 1ea0db475f

View file

@ -9,6 +9,23 @@
"docker": {
"network": "HOST",
"image": "sytse/gitlab-ce:7.10.1"
}
},
"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"
}
]
}
}