Files
tabbyAPI/docker-compose.yml
Martin Honermeyer 6ab02e1eeb Remove fschat from compose yaml
fschat has been removed from the Dockerfile a while ago.
2024-01-06 02:18:26 +01:00

20 lines
378 B
YAML

version: '3.8'
services:
tabbyapi:
build:
context: .
ports:
- "5000:5000"
environment:
- NAME=TabbyAPI
- NVIDIA_VISIBLE_DEVICES=all
volumes:
- ./models:/usr/src/app/models
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]