lusheng (@skylusheng)自建tabby同步服务 中发帖

现在web设置关联提示未安装版本不知该如何配置
[Image description]
[Image description]

docker-compose部署

root@hz-finland1:~# cat tabby/docker-compose.yml
version: '3.0'

services:
tabby-web:
image: ghcr.io/eugeny/tabby-web:latest
container_name: tabby-web
restart: unless-stopped
network_mode: host
volumes:
- ./data:/data
environment:
- DATABASE_URL=sqlite:////data/db.sqlite3
...