Files
local-voice-assistant/docker-compose.yml
T
YannAhlgrim c4352b7461 change port
2025-10-08 16:05:13 +02:00

42 lines
839 B
YAML

version: '3.8'
services:
whisper:
build: ./whisper
image: lva_whisper:latest
ports:
- "8001:8001"
restart: unless-stopped
volumes:
- ./whisper/models:/models
coquitts:
build: ./coquitts
image: lva_coquitts:latest
ports:
- "8002:8002"
restart: unless-stopped
# ollama:
# # This is a placeholder image; ensure you have an Ollama-compatible image and models available.
# image: ollama/ollama:latest
# container_name: ollama
# ports:
# - "11434:11434"
# restart: unless-stopped
# volumes:
# - ./ollama-data:/root/.ollama
middleware:
build: ./middleware
image: lva_middleware:latest
ports:
- "8003:8003"
depends_on:
- whisper
- coquitts
restart: unless-stopped
networks:
default:
name: lva_network