Welcome to mirror list, hosted at ThFree Co, Russian Federation.

docker-compose.yml « test-cluster « _support - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46ccf93c7888c2c1dc16aa432ffd35d11aa36e6a (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
version: "3"
services:
  app1:
    image: gitlab/gitlab-ce:9.2.0-rc1.ce.0
    ports:
      - "8080:80"
      - "2222:22"
    links:
      - gitaly1
      - gitaly2
    volumes:
      - ./app1/etc-gitlab:/etc/gitlab
      - ./gitaly1/data:/mnt/data1
      - ./gitaly2/data:/mnt/data2
  gitaly1:
    image: gitlab/gitlab-ce:9.2.0-rc1.ce.0
    expose:
      - 6666
    volumes:
      - ./gitaly1/data:/var/opt/gitlab/git-data
      - ./gitaly1/etc-gitlab:/etc/gitlab
  gitaly2:
    image: gitlab/gitlab-ce:9.2.0-rc1.ce.0
    expose:
      - 6666
    volumes:
      - ./gitaly2/data:/var/opt/gitlab/git-data-2
      - ./gitaly2/etc-gitlab:/etc/gitlab