blob: 4af4c3867b52de637befb6d528c0413acb16c0fa (
plain) (
tree)
|
|
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.3.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
|