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:
26
stacks/smokeping/docker-compose.yml
Normal file
26
stacks/smokeping/docker-compose.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
services:
|
||||
smokeping:
|
||||
image: lscr.io/linuxserver/smokeping:latest
|
||||
container_name: smokeping
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=America/New_York
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./data:/data
|
||||
expose:
|
||||
- 80
|
||||
networks:
|
||||
- web
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.smokeping.entrypoints=https"
|
||||
- "traefik.http.routers.smokeping.rule=Host(`smokeping.${DOMAIN}`)"
|
||||
- "traefik.http.routers.smokeping.tls.certresolver=http"
|
||||
- "traefik.http.services.smokeping.loadbalancer.server.port=80"
|
||||
|
||||
networks:
|
||||
web:
|
||||
external: true
|
||||
Reference in New Issue
Block a user