summaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: 0593bf66c6d512a0cce04e13fe57f1b721f2df8f (plain) (blame)
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
32
33
version: "3.7"

services:
  gitolite:
    build: "gitolite"
    restart: "always"
    volumes:
      - "data:/git/repositories"
      - "ssh:/hostkeys"
    ports:
      - "22:22"

  cgit:
    build:
      context: "cgit"
      args:
        NORMALMODE_VERSION: "normalmode v0.2.0"
    restart: "always"
    volumes:
      - "data:/repositories:ro"
    networks:
      - "nginx-proxy-network"
    environment:
      VIRTUAL_HOST: "normalmode.org"
      LETSENCRYPT_HOST: "normalmode.org"

volumes:
  data:
  ssh:

networks:
  nginx-proxy-network:
    external: true