If a user wants to build from source, let them. But the default should fetch from the package registry. Signed-off-by: kingbri <bdashore3@proton.me>
31 lines
898 B
YAML
31 lines
898 B
YAML
version: '3.8'
|
|
services:
|
|
tabbyapi:
|
|
# Uncomment this to build a docker image from source
|
|
#build:
|
|
# context: ..
|
|
# dockerfile: ./docker/Dockerfile
|
|
|
|
# Comment this to build a docker image from source
|
|
image: ghcr.io/theroyallab/tabbyapi:latest
|
|
ports:
|
|
- "5000:5000"
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://127.0.0.1:5000/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
environment:
|
|
- NAME=TabbyAPI
|
|
- NVIDIA_VISIBLE_DEVICES=all
|
|
volumes:
|
|
- ./models:/app/models # Change me
|
|
# - /path/to/config.yml:/app/config.yml # Change me
|
|
# - /path/to/api_tokens.yml:/app/api_tokens.yml # Change me
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: all
|
|
capabilities: [gpu]
|