Major accomplishments: - ✅ SELinux policy installed and working - ✅ Core Traefik v2.10 deployment running - ✅ Production configuration ready (v3.1) - ✅ Monitoring stack configured - ✅ Comprehensive documentation created - ✅ Security hardening implemented Current status: - 🟡 Partially deployed (60% complete) - ⚠️ Docker socket access needs resolution - ❌ Monitoring stack not deployed yet - ⚠️ Production migration pending Next steps: 1. Fix Docker socket permissions 2. Deploy monitoring stack 3. Migrate to production config 4. Validate full functionality Files added: - Complete Traefik deployment documentation - Production and test configurations - Monitoring stack configurations - SELinux policy module - Security checklists and guides - Current status documentation
44 lines
995 B
YAML
44 lines
995 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
adguard:
|
|
image: adguard/adguardhome:v0.107.51
|
|
volumes:
|
|
- adguard_conf:/opt/adguardhome/conf
|
|
- adguard_work:/opt/adguardhome/work
|
|
ports:
|
|
- target: 53
|
|
published: 53
|
|
protocol: tcp
|
|
mode: host
|
|
- target: 53
|
|
published: 53
|
|
protocol: udp
|
|
mode: host
|
|
- target: 3000
|
|
published: 3000
|
|
mode: host
|
|
networks:
|
|
- traefik-public
|
|
deploy:
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.http.routers.adguard.rule=Host(`adguard.localhost`)
|
|
- traefik.http.routers.adguard.entrypoints=websecure
|
|
- traefik.http.routers.adguard.tls=true
|
|
- traefik.http.services.adguard.loadbalancer.server.port=3000
|
|
|
|
volumes:
|
|
adguard_conf:
|
|
driver: local
|
|
driver_opts:
|
|
type: nfs
|
|
o: addr=omv800.local,nolock,soft,rw
|
|
device: :/export/adguard/conf
|
|
adguard_work:
|
|
driver: local
|
|
|
|
networks:
|
|
traefik-public:
|
|
external: true
|