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
32 lines
693 B
YAML
32 lines
693 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
caddy:
|
|
image: caddy:2.7.6
|
|
volumes:
|
|
- caddy_config:/etc/caddy
|
|
- caddy_data:/data
|
|
networks:
|
|
- traefik-public
|
|
deploy:
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.http.routers.caddy.rule=Host(`caddy.localhost`)
|
|
- traefik.http.routers.caddy.entrypoints=websecure
|
|
- traefik.http.routers.caddy.tls=true
|
|
- traefik.http.services.caddy.loadbalancer.server.port=80
|
|
|
|
volumes:
|
|
caddy_config:
|
|
driver: local
|
|
driver_opts:
|
|
type: nfs
|
|
o: addr=omv800.local,nolock,soft,rw
|
|
device: :/export/caddy/config
|
|
caddy_data:
|
|
driver: local
|
|
|
|
networks:
|
|
traefik-public:
|
|
external: true
|