2023-06-24 16:02:50 +00:00
|
|
|
version: '3.5'
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
scheduler:
|
|
|
|
|
image: tabbyml/tabby
|
|
|
|
|
platform: linux/amd64
|
|
|
|
|
command: scheduler --now
|
|
|
|
|
volumes:
|
2023-07-11 01:53:04 +00:00
|
|
|
- "$PWD/tabby:/data"
|
2023-06-24 16:02:50 +00:00
|
|
|
|
|
|
|
|
tabby:
|
|
|
|
|
depends_on:
|
|
|
|
|
- scheduler
|
|
|
|
|
restart: always
|
|
|
|
|
image: tabbyml/tabby
|
|
|
|
|
platform: linux/amd64
|
|
|
|
|
command: serve --model TabbyML/T5P-220M
|
2023-07-11 01:53:04 +00:00
|
|
|
ports:
|
|
|
|
|
- "8080:8080"
|
2023-06-24 16:02:50 +00:00
|
|
|
volumes:
|
2023-07-11 01:53:04 +00:00
|
|
|
- "$PWD/tabby:/data"
|