diff options
-rw-r--r-- | docker/marathon.json | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/docker/marathon.json b/docker/marathon.json index d23c2b84e0e..2f3bb6f17b4 100644 --- a/docker/marathon.json +++ b/docker/marathon.json @@ -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" + } + ] } }
\ No newline at end of file |