```yaml version: '3.8' services: rosalinda: build: . ports: - "3000:3000" environment: - ROSALINDA_TOKEN=${ROSALINDA_TOKEN} - NODE_ENV=production volumes: - ./logs:/app/logs restart: unless-stopped healthcheck: test: ["CMD", "wget", "-qO-", "http://localhost:3000/health"] interval: 30s timeout: 3s retries: 3 ollama: image: ollama/ollama ports: - "11434:11434" volumes: - ollama_data:/root/.ollama restart: unless-stopped volumes: ollama_data: ```