Set up three-tier synchronization: Syncthing (real-time), GitHub (version control), rsync (disaster recovery). Includes complete documentation for future Claude sessions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
425 B
YAML
19 lines
425 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
blackbox-exporter:
|
|
image: prom/blackbox-exporter:latest
|
|
container_name: blackbox-exporter
|
|
restart: unless-stopped
|
|
ports:
|
|
- "9115:9115"
|
|
volumes:
|
|
- ./blackbox.yml:/etc/blackbox_exporter/config.yml
|
|
command:
|
|
- '--config.file=/etc/blackbox_exporter/config.yml'
|
|
networks:
|
|
- monitoring_monitoring
|
|
|
|
networks:
|
|
monitoring_monitoring:
|
|
external: true
|