# Minimal compose for running chatterbox-fast. `docker compose up --build`. # Mount a HuggingFace cache so the ~6 GB Turbo weights survive container recreate. services: chatterbox-fast: build: . image: chatterbox-fast:latest restart: unless-stopped gpus: all ports: - "${CBF_PORT:-8197}:8197" environment: - CBF_DEFAULT_VOICE=${CBF_DEFAULT_VOICE:-} volumes: - ${HF_CACHE:-./hf_cache}:/app/hf_cache # Optional: mount your own voices over the baked starter set. # - ./my-voices:/app/voices