Spaces:
Configuration error
Configuration error
| # NOTE: arm images haven't been tested | |
| services: | |
| faster-whisper-server-cuda: | |
| image: fedirz/faster-whisper-server:latest-cuda | |
| build: | |
| dockerfile: Dockerfile.cuda | |
| context: . | |
| platforms: | |
| - linux/amd64 | |
| - linux/arm64 | |
| volumes: | |
| - ~/.cache/huggingface:/root/.cache/huggingface | |
| restart: unless-stopped | |
| ports: | |
| - 8000:8000 | |
| develop: | |
| watch: | |
| - path: faster_whisper_server | |
| action: rebuild | |
| deploy: | |
| resources: | |
| reservations: | |
| devices: | |
| - capabilities: ["gpu"] | |
| faster-whisper-server-cpu: | |
| image: fedirz/faster-whisper-server:latest-cpu | |
| build: | |
| dockerfile: Dockerfile.cpu | |
| context: . | |
| platforms: | |
| - linux/amd64 | |
| - linux/arm64 | |
| volumes: | |
| - ~/.cache/huggingface:/root/.cache/huggingface | |
| restart: unless-stopped | |
| ports: | |
| - 8000:8000 | |
| develop: | |
| watch: | |
| - path: faster_whisper_server | |
| action: rebuild | |