BigW Consortium Gitlab

marathon.json 635 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
{
  "id": "/gitlab",
  "ports": [0,0],
  "cpus": 2,
  "mem": 2048.0,
  "disk": 10240.0,
  "container": {
    "type": "DOCKER",
    "docker": {
      "network": "HOST",
11
      "image": "gitlab/gitlab-ce:latest"
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
    },
    "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"
      }
    ]
30 31
  }
}