summaryrefslogtreecommitdiff
path: root/cgit/docker-compose.yml
diff options
context:
space:
mode:
authoryyamashita <yyamashita@hetzner.yyamashita.com>2026-05-17 17:19:10 +0900
committeryyamashita <yyamashita@hetzner.yyamashita.com>2026-05-17 17:19:10 +0900
commit7e8e89ef2e2b2302c92e03429e43be9b1db08d49 (patch)
treee1e34abb26d098c55b46a5d2703b0757bea3a0a1 /cgit/docker-compose.yml
parentdd7142e08cd66656514c7468ce12be72674900a5 (diff)
Add cgit web interface at git.yyamashita.com
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'cgit/docker-compose.yml')
-rw-r--r--cgit/docker-compose.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/cgit/docker-compose.yml b/cgit/docker-compose.yml
new file mode 100644
index 0000000..5e59177
--- /dev/null
+++ b/cgit/docker-compose.yml
@@ -0,0 +1,15 @@
+services:
+ cgit:
+ image: klakegg/cgit:alpine
+ container_name: cgit
+ volumes:
+ - ./cgitrc:/etc/cgitrc:ro
+ - /var/git:/var/git:ro
+ restart: unless-stopped
+ networks:
+ - web
+
+networks:
+ web:
+ external: true
+ name: web