From d8ad8d89b7a746165c231908452acec333a6a966 Mon Sep 17 00:00:00 2001 From: imanewstudent <145534906+imanewstudent@users.noreply.github.com> Date: Mon, 13 Apr 2026 18:32:22 +0800 Subject: [PATCH] fix: add local build context to docker-compose Added \build: .` to the openclaw-gateway service in docker-compose.yml. This resolves the "pull access denied" error for users attempting a pure local deployment (e.g., using `docker compose up --build`), as it currently fails when attempting to pull the nonexistent `openclaw:local` image from remote registries.` --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 0a55b342e92..2c4b8c053c0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,7 @@ services: openclaw-gateway: image: ${OPENCLAW_IMAGE:-openclaw:local} + build: . environment: HOME: /home/node TERM: xterm-256color