mirror of
https://github.com/sipeed/picoclaw.git
synced 2026-05-25 16:00:35 +00:00
62d0e34ec9
* fix(docker): restore `make docker-build` by adding build directives and fixing Go version docker-compose.yml only had `image:` references with no `build:` sections, so `docker compose build` had nothing to build. Also fixed golang:1.26.0-alpine (nonexistent) to golang:1.25-alpine in Dockerfile.full/heavy, and removed LICENSE from .dockerignore since scripts/copydir.go needs it as a repo-root anchor during `go generate`. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(docker): inject version metadata ldflags in Dockerfile.launcher Mirror the ldflags from web/Makefile (Version, GitCommit, BuildTime, GoVersion) into the picoclaw-launcher go build command so Docker-built launcher images include proper version/build metadata. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
65 lines
2.6 KiB
YAML
65 lines
2.6 KiB
YAML
services:
|
|
# ─────────────────────────────────────────────
|
|
# PicoClaw Agent (one-shot query)
|
|
# docker compose -f docker/docker-compose.yml run --rm picoclaw-agent -m "Hello"
|
|
# ─────────────────────────────────────────────
|
|
picoclaw-agent:
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/Dockerfile
|
|
image: docker.io/sipeed/picoclaw:latest
|
|
container_name: picoclaw-agent
|
|
profiles:
|
|
- agent
|
|
# Uncomment to access host network; leave commented unless needed.
|
|
#extra_hosts:
|
|
# - "host.docker.internal:host-gateway"
|
|
volumes:
|
|
- ./data:/root/.picoclaw
|
|
entrypoint: ["picoclaw", "agent"]
|
|
stdin_open: true
|
|
tty: true
|
|
|
|
# ─────────────────────────────────────────────
|
|
# PicoClaw Gateway (Long-running Bot)
|
|
# docker compose -f docker/docker-compose.yml --profile gateway up
|
|
# ─────────────────────────────────────────────
|
|
picoclaw-gateway:
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/Dockerfile
|
|
image: docker.io/sipeed/picoclaw:latest
|
|
container_name: picoclaw-gateway
|
|
restart: unless-stopped
|
|
profiles:
|
|
- gateway
|
|
# Uncomment to access host network; leave commented unless needed.
|
|
#extra_hosts:
|
|
# - "host.docker.internal:host-gateway"
|
|
volumes:
|
|
- ./data:/root/.picoclaw
|
|
|
|
# ─────────────────────────────────────────────
|
|
# PicoClaw Launcher (Web Console + Gateway)
|
|
# docker compose -f docker/docker-compose.yml --profile launcher up
|
|
# ─────────────────────────────────────────────
|
|
picoclaw-launcher:
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/Dockerfile.launcher
|
|
image: docker.io/sipeed/picoclaw:launcher
|
|
container_name: picoclaw-launcher
|
|
restart: unless-stopped
|
|
profiles:
|
|
- launcher
|
|
environment:
|
|
- PICOCLAW_GATEWAY_HOST=0.0.0.0
|
|
# Set a fixed dashboard token instead of a random one each restart.
|
|
# If not set, a random token is generated and printed to the console on startup.
|
|
#- PICOCLAW_LAUNCHER_TOKEN=your-secret-token-here
|
|
ports:
|
|
- "18800:18800"
|
|
- "18790:18790"
|
|
volumes:
|
|
- ./data:/root/.picoclaw
|