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

docker-compose.yml « praefect-cluster « _support - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1ae87ddcbb8ccf6400dba4d794682de912c3be35 (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
version: "3"
services:
  gitaly1:
    image: gitaly:latest
    command: ["/app/_build/bin/gitaly", "/etc/gitaly/config.toml"]
    ports:
      - "9999:9999"
    volumes:
      - ./gitaly1/data:/var/opt/gitlab/git-data
      - ./gitaly1/config.toml:/etc/gitaly/config.toml
  gitaly2:
    image: gitaly:latest
    command: ["/app/_build/bin/gitaly", "/etc/gitaly/config.toml"]
    ports:
      - "9998:9998"
    volumes:
      - ./gitaly2/data:/var/opt/gitlab/git-data
      - ./gitaly2/config.toml:/etc/gitaly/config.toml
  gitaly3:
    image: gitaly:latest
    command: ["/app/_build/bin/gitaly", "/etc/gitaly/config.toml"]
    ports:
      - "9997:9997"
    volumes:
      - ./gitaly3/data:/var/opt/gitlab/git-data
      - ./gitaly3/config.toml:/etc/gitaly/config.toml