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
33 lines
667 B
YAML
33 lines
667 B
YAML
version: '3.9'
|
|
services:
|
|
mariadb_primary:
|
|
image: mariadb:10.11
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD_FILE_FILE: /run/secrets/mysql_root_password_file
|
|
secrets:
|
|
- mariadb_root_password
|
|
- mysql_root_password_file
|
|
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
|
|
mysql_root_password_file:
|
|
external: true
|
|
networks:
|
|
database-network:
|
|
external: true
|