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
590 B
YAML
32 lines
590 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
mariadb_primary:
|
|
image: mariadb:10.11
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD_FILE: /run/secrets/mariadb_root_password
|
|
secrets:
|
|
- mariadb_root_password
|
|
command: ["--log-bin=mysql-bin", "--server-id=1"]
|
|
volumes:
|
|
- mariadb_data:/var/lib/mysql
|
|
networks:
|
|
- database-network
|
|
deploy:
|
|
placement:
|
|
constraints:
|
|
- "node.labels.role==db"
|
|
replicas: 1
|
|
|
|
volumes:
|
|
mariadb_data:
|
|
driver: local
|
|
|
|
secrets:
|
|
mariadb_root_password:
|
|
external: true
|
|
|
|
networks:
|
|
database-network:
|
|
external: true
|