14 lines
394 B
YAML
14 lines
394 B
YAML
services:
|
|
kiro-rs:
|
|
# 使用国内镜像
|
|
# image: ghcr.nju.edu.cn/${IMAGE_OWNER:-hank9999}/kiro-rs:${IMAGE_TAG:-latest}
|
|
image: ghcr.io/${IMAGE_OWNER:-hank9999}/kiro-rs:${IMAGE_TAG:-latest}
|
|
container_name: kiro-rs
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
ports:
|
|
- "8990:8990"
|
|
volumes:
|
|
- ./config/:/app/config/
|
|
restart: unless-stopped
|