From d673e77171cde44e84f0d2a9ec637d975930b7e5 Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Mon, 13 Jul 2026 14:00:35 +0800 Subject: [PATCH] =?UTF-8?q?Jenkins=E6=89=93=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.example | 4 +--- compose.deploy.yaml | 6 +++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.env.example b/.env.example index e75bf7b..bfb7676 100644 --- a/.env.example +++ b/.env.example @@ -1,8 +1,6 @@ -# Only used by compose.deploy.yaml (image: ${REGISTRY}/${IMAGE_NAME}:${IMAGE_TAG}). +# Used by compose.deploy.yaml (image: git.jerryyan.net/q792602257/agentic-mobile-control:${IMAGE_TAG}). # Jenkins publishes IMAGE_TAG as "-"; match the # tag of the build you intend to deploy. -REGISTRY=git.jerryyan.net -IMAGE_NAME=q792602257/agentic-mobile-control IMAGE_TAG=latest POSTGRES_DB=device_cloud diff --git a/compose.deploy.yaml b/compose.deploy.yaml index e3ecb7c..f2113b8 100644 --- a/compose.deploy.yaml +++ b/compose.deploy.yaml @@ -1,6 +1,6 @@ services: postgres: - image: postgres:18 + image: registry.jerryyan.net/library/postgres:18 environment: POSTGRES_DB: ${POSTGRES_DB} POSTGRES_USER: ${POSTGRES_USER} @@ -15,7 +15,7 @@ services: restart: unless-stopped cloud-api: - image: ${REGISTRY}/${IMAGE_NAME}:${IMAGE_TAG:-latest} + image: git.jerryyan.net/q792602257/agentic-mobile-control:${IMAGE_TAG:-latest} command: - sh - -c @@ -45,7 +45,7 @@ services: restart: unless-stopped host-agent: - image: ${REGISTRY}/${IMAGE_NAME}:${IMAGE_TAG:-latest} + image: git.jerryyan.net/q792602257/agentic-mobile-control:${IMAGE_TAG:-latest} command: ["device-host-agent"] environment: HOST_AGENT_CONTROL_PLANE_URL: http://cloud-api:8001