diff options
Diffstat (limited to 'marathon.json')
-rwxr-xr-x | marathon.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/marathon.json b/marathon.json new file mode 100755 index 0000000..814868f --- /dev/null +++ b/marathon.json @@ -0,0 +1,31 @@ +{ + "id": "/gitlab", + "ports": [0,0], + "cpus": 2, + "mem": 2048.0, + "disk": 10240.0, + "container": { + "type": "DOCKER", + "docker": { + "network": "HOST", + "image": "d2ice/rkt-gitlab-ce:latest" + }, + "volumes": [ + { + "containerPath": "/etc/gitlab", + "hostPath": "/srv/gitlab/etc", + "mode": "RW" + }, + { + "containerPath": "/var/opt/gitlab", + "hostPath": "/srv/gitlab/opt", + "mode": "RW" + }, + { + "containerPath": "/var/log/gitlab", + "hostPath": "/srv/gitlab/log", + "mode": "RW" + } + ] + } +} |