# Simple Secure Homelab Override # Use with: docker-compose -f docker-compose.yml -f docker-compose.homelab-secure-simple.yml up -d services: api-server: build: context: . dockerfile: build/docker/test.Dockerfile volumes: - ./data:/data/experiments - ./logs:/logs - ./configs/environments/config-homelab-secure.yaml:/app/configs/config.yaml:ro - ./ssl:/app/ssl:ro environment: - REDIS_URL=redis://redis:6379 - REDIS_PASSWORD=your-redis-password - LOG_LEVEL=info healthcheck: test: ["CMD", "curl", "-f", "http://localhost:9101/health"] redis: command: redis-server --appendonly yes volumes: - redis_data:/data ports: - "6379:6379" healthcheck: test: ["CMD", "redis-cli", "ping"]