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
737 B
YAML
33 lines
737 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
ollama:
|
|
image: ollama/ollama:0.1.46
|
|
ports:
|
|
- target: 11434
|
|
published: 11434
|
|
mode: host
|
|
volumes:
|
|
- ollama_models:/root/.ollama
|
|
networks:
|
|
- traefik-public
|
|
deploy:
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.http.routers.ollama.rule=Host(`ollama.localhost`)
|
|
- traefik.http.routers.ollama.entrypoints=websecure
|
|
- traefik.http.routers.ollama.tls=true
|
|
- traefik.http.services.ollama.loadbalancer.server.port=11434
|
|
|
|
volumes:
|
|
ollama_models:
|
|
driver: local
|
|
driver_opts:
|
|
type: nfs
|
|
o: addr=omv800.local,nolock,soft,rw
|
|
device: :/export/ollama/models
|
|
|
|
networks:
|
|
traefik-public:
|
|
external: true
|