aboutsummaryrefslogtreecommitdiffstats
path: root/marathon.json
blob: 814868f81351b497dfc747e5b0ab64045d8d287d (plain)
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
{
  "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"
      }
    ]
  }
}