fix(docker): correct volume path from /root/.picoclaw to /home/picoclaw/.picoclaw (fixes #2269)

This commit is contained in:
曾文锋0668000834 2026-04-07 14:11:38 +08:00
parent 84edc462d6
commit 2f799bbfa3

View file

@ -12,7 +12,7 @@ services:
#extra_hosts:
# - "host.docker.internal:host-gateway"
volumes:
- ./data:/root/.picoclaw
- ./data:/home/picoclaw/.picoclaw
entrypoint: ["picoclaw", "agent"]
stdin_open: true
tty: true
@ -31,7 +31,7 @@ services:
#extra_hosts:
# - "host.docker.internal:host-gateway"
volumes:
- ./data:/root/.picoclaw
- ./data:/home/picoclaw/.picoclaw
# ─────────────────────────────────────────────
# PicoClaw Launcher (Web Console + Gateway)
@ -52,4 +52,4 @@ services:
- "18800:18800"
- "18790:18790"
volumes:
- ./data:/root/.picoclaw
- ./data:/home/picoclaw/.picoclaw