Initial commit: 23 docker stacks for GitOps deployment
Stacks included:
- Infrastructure: traefik, authentik, gitea, registry, watchtower, dockge
- Monitoring: smokeping, changedetection
- Apps: ghost, gollum, wallabag, radicale, invidious, xbackbone, filebrowser, syncthing, zerotier
- Custom: obsidian-tools, memento, perilous, ramz, bookclub, brain
🤖 Generated with Claude Code
This commit is contained in:
1
stacks/gollum/.env.template
Normal file
1
stacks/gollum/.env.template
Normal file
@@ -0,0 +1 @@
|
||||
DOMAIN=${DOMAIN}
|
||||
24
stacks/gollum/docker-compose.yml
Normal file
24
stacks/gollum/docker-compose.yml
Normal file
@@ -0,0 +1,24 @@
|
||||
services:
|
||||
gollum:
|
||||
image: gollumwiki/gollum:master
|
||||
container_name: gollum
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./config.rb:/etc/gollum/config.rb
|
||||
- ./wikidata:/wiki
|
||||
command:
|
||||
- "--config=/etc/gollum/config.rb"
|
||||
expose:
|
||||
- 4567
|
||||
networks:
|
||||
- web
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.gollum.entrypoints=https"
|
||||
- "traefik.http.routers.gollum.rule=Host(`gollum.${DOMAIN}`)"
|
||||
- "traefik.http.routers.gollum.tls.certresolver=http"
|
||||
- "traefik.http.routers.gollum.middlewares=auth@file"
|
||||
|
||||
networks:
|
||||
web:
|
||||
external: true
|
||||
Reference in New Issue
Block a user