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
47 lines
1.0 KiB
YAML
47 lines
1.0 KiB
YAML
version: '3.9'
|
|
|
|
services:
|
|
vaultwarden:
|
|
image: vaultwarden/server:1.30.5
|
|
environment:
|
|
DOMAIN: https://vaultwarden.localhost
|
|
SIGNUPS_ALLOWED: 'false'
|
|
SMTP_HOST: smtp
|
|
SMTP_FROM: noreply@local
|
|
SMTP_PORT: 587
|
|
SMTP_SECURITY: starttls
|
|
SMTP_USERNAME_FILE: /run/secrets/smtp_user
|
|
SMTP_PASSWORD_FILE: /run/secrets/smtp_pass
|
|
secrets:
|
|
- smtp_user
|
|
- smtp_pass
|
|
volumes:
|
|
- vw_data:/data
|
|
networks:
|
|
- traefik-public
|
|
deploy:
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.http.routers.vw.rule=Host(`vaultwarden.localhost`)
|
|
- traefik.http.routers.vw.entrypoints=websecure
|
|
- traefik.http.routers.vw.tls=true
|
|
- traefik.http.services.vw.loadbalancer.server.port=80
|
|
|
|
volumes:
|
|
vw_data:
|
|
driver: local
|
|
driver_opts:
|
|
type: nfs
|
|
o: addr=omv800.local,nolock,soft,rw
|
|
device: :/export/vaultwarden/data
|
|
|
|
secrets:
|
|
smtp_user:
|
|
external: true
|
|
smtp_pass:
|
|
external: true
|
|
|
|
networks:
|
|
traefik-public:
|
|
external: true
|