mirror of
https://github.com/TabbyML/tabby
synced 2024-11-23 10:05:08 +00:00
bed723fced
* feat: add python eval script * update * add local script * move eval script * update * update * update * update * update * update * update * update * update * update * update * update * add README
22 lines
389 B
YAML
22 lines
389 B
YAML
version: '3.5'
|
|
|
|
services:
|
|
scheduler:
|
|
image: tabbyml/tabby
|
|
platform: linux/amd64
|
|
command: scheduler --now
|
|
volumes:
|
|
- "$PWD/tabby:/data"
|
|
|
|
tabby:
|
|
depends_on:
|
|
- scheduler
|
|
restart: always
|
|
image: tabbyml/tabby
|
|
platform: linux/amd64
|
|
command: serve --model TabbyML/T5P-220M
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- "$PWD/tabby:/data"
|