withvibe 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -154,6 +154,11 @@ services:
|
|
|
154
154
|
# Persist `code tunnel` per-user auth dirs across redeploys so users
|
|
155
155
|
# don't have to re-run the device-code login every time.
|
|
156
156
|
- code-tunnel-data:/var/lib/withvibe/code-tunnel
|
|
157
|
+
# Persist the Agent SDK chat transcripts (CLAUDE_CONFIG_DIR) so multi-turn
|
|
158
|
+
# conversation memory survives api redeploys/recreates. The image
|
|
159
|
+
# pre-creates this dir owned by `claude` so the volume initializes with the
|
|
160
|
+
# right ownership (see apps/api/Dockerfile).
|
|
161
|
+
- claude-home:/home/claude/.claude
|
|
157
162
|
extra_hosts:
|
|
158
163
|
# So spawned sidecars resolving host.docker.internal hit the host
|
|
159
164
|
# gateway on Linux too (Docker Desktop wires this automatically on
|
|
@@ -188,6 +193,7 @@ services:
|
|
|
188
193
|
volumes:
|
|
189
194
|
postgres-data:
|
|
190
195
|
code-tunnel-data:
|
|
196
|
+
claude-home:
|
|
191
197
|
|
|
192
198
|
networks:
|
|
193
199
|
withvibe:
|