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.`
This commit is contained in:
imanewstudent
2026-04-13 18:32:22 +08:00
committed by GitHub
parent 78448c0a26
commit d8ad8d89b7

View File

@@ -1,6 +1,7 @@
services:
openclaw-gateway:
image: ${OPENCLAW_IMAGE:-openclaw:local}
build: .
environment:
HOME: /home/node
TERM: xterm-256color