-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocker-compose.build.yml
More file actions
22 lines (21 loc) · 946 Bytes
/
docker-compose.build.yml
File metadata and controls
22 lines (21 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# ==============================================================================
# OpenClaw Docker Compose Build Configuration
# ==============================================================================
# This file is intended to be merged with docker-compose.yml via the COMPOSE_FILE
# environment variable in .env when local building is required.
# ==============================================================================
services:
openclaw-gateway:
build:
context: .
dockerfile: Dockerfile
args:
BASE_IMAGE: ${BASE_IMAGE:-openclaw-runtime:base}
OPENCLAW_VERSION: ${OPENCLAW_VERSION:-latest}
INSTALL_BROWSER: ${INSTALL_BROWSER:-0}
HTTP_PROXY: ${HTTP_PROXY:-}
HTTPS_PROXY: ${HTTPS_PROXY:-}
DOCKER_MIRROR: ${DOCKER_MIRROR:-docker.io}
APT_MIRROR: ${APT_MIRROR:-deb.debian.org}
NPM_MIRROR: ${NPM_MIRROR:-}
PYTHON_MIRROR: ${PYTHON_MIRROR:-}