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