Skip to content

Commit 564548f

Browse files
Hooman Mehrclaude
andcommitted
Update setup guides: Redis container references to Valkey
Fix docker run, container names, and docker start commands in macOS and Windows setup guides to use valkey/valkey:8-alpine image and loom-valkey container name. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7fd2548 commit 564548f

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/setup-macos.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Docman needs two services running: NATS (a message broker) and Valkey (a data st
144144

145145
```bash
146146
docker run -d --name loom-nats -p 4222:4222 nats:2.10-alpine
147-
docker run -d --name loom-redis -p 6379:6379 redis:7-alpine
147+
docker run -d --name loom-valkey -p 6379:6379 valkey/valkey:8-alpine
148148
```
149149

150150
Verify they're running:
@@ -153,12 +153,12 @@ Verify they're running:
153153
docker ps
154154
```
155155

156-
You should see two containers: `loom-nats` and `loom-redis`.
156+
You should see two containers: `loom-nats` and `loom-valkey`.
157157

158158
> **Note:** These containers will stop if you restart your Mac. To start them again later:
159159
>
160160
> ```bash
161-
> docker start loom-nats loom-redis
161+
> docker start loom-nats loom-valkey
162162
> ```
163163
164164
---
@@ -383,7 +383,7 @@ Use `uv run loom` instead of bare `loom`, or activate the venv: `source .venv/bi
383383
### NATS or Valkey container not running
384384

385385
```bash
386-
docker start loom-nats loom-redis
386+
docker start loom-nats loom-valkey
387387
```
388388

389389
If they don't exist yet, re-run the `docker run` commands from Step 6.

docs/setup-windows.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ Make sure Docker Desktop is running (check for its icon in the system tray), the
180180

181181
```powershell
182182
docker run -d --name loom-nats -p 4222:4222 nats:2.10-alpine
183-
docker run -d --name loom-redis -p 6379:6379 redis:7-alpine
183+
docker run -d --name loom-valkey -p 6379:6379 valkey/valkey:8-alpine
184184
```
185185

186186
Verify they're running:
@@ -189,12 +189,12 @@ Verify they're running:
189189
docker ps
190190
```
191191

192-
You should see two containers: `loom-nats` and `loom-redis`.
192+
You should see two containers: `loom-nats` and `loom-valkey`.
193193

194194
> **Note:** These containers stop when you restart your PC or close Docker Desktop. To start them again:
195195
>
196196
> ```powershell
197-
> docker start loom-nats loom-redis
197+
> docker start loom-nats loom-valkey
198198
> ```
199199
200200
---

0 commit comments

Comments
 (0)