🎨 修改docker-compose.yml文件,修改为使用dockerfile编译

This commit is contained in:
2026-03-05 21:34:35 +08:00
parent 84c66ccaa7
commit df78823f75

View File

@@ -1,8 +1,9 @@
services: services:
kiro-rs: kiro-rs:
# 使用国内镜像 # Build locally from source instead of pulling from registry
# image: ghcr.nju.edu.cn/${IMAGE_OWNER:-hank9999}/kiro-rs:${IMAGE_TAG:-latest} build:
image: ghcr.io/${IMAGE_OWNER:-hank9999}/kiro-rs:${IMAGE_TAG:-latest} context: .
dockerfile: Dockerfile
container_name: kiro-rs container_name: kiro-rs
extra_hosts: extra_hosts:
- "host.docker.internal:host-gateway" - "host.docker.internal:host-gateway"