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
31 lines
573 B
YAML
31 lines
573 B
YAML
version: '3.9'
|
|
services:
|
|
mosquitto:
|
|
image: eclipse-mosquitto:2
|
|
volumes:
|
|
- mosquitto_conf:/mosquitto/config
|
|
- mosquitto_data:/mosquitto/data
|
|
- mosquitto_log:/mosquitto/log
|
|
networks:
|
|
- traefik-public
|
|
ports:
|
|
- target: 1883
|
|
published: 1883
|
|
mode: host
|
|
deploy:
|
|
replicas: 1
|
|
placement:
|
|
constraints:
|
|
- node.labels.role==core
|
|
volumes:
|
|
mosquitto_conf:
|
|
driver: local
|
|
mosquitto_data:
|
|
driver: local
|
|
mosquitto_log:
|
|
driver: local
|
|
networks:
|
|
traefik-public:
|
|
external: true
|
|
secrets: {}
|