Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions docs/VIDEO_MODEL.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ FlashDreams publishes `Dockerfile`s but not pre-built images. We need to build t

```bash
cd ../flashdreams
docker build -t flashdreams-base:local -f docker/Dockerfile .
docker build -t flashdreams:local -f docker/Dockerfile .
```

2. Then build the Alpasim-ready FlashDreams image. This bakes the workspace source
Expand Down Expand Up @@ -118,7 +118,14 @@ uv run --project src/wizard alpasim_wizard \
The preset uses `services.renderer.image=flashdreams-alpasim:local`,
`external_image=true`, and `pull_policy=never`, so Docker Compose uses the local image tag instead of trying to pull from a registry. The wizard starts a `renderer-0` container and connects Alpasim services to it.

The managed container mounts persistent host caches for Hugging Face, Torch, and FlashDreams. Override these host paths if needed:
The managed container mounts persistent host caches for Hugging Face, Torch, and FlashDreams.

Ensure the cache folders exist on host:
```bash
mkdir -p ~/.cache/huggingface ~/.cache/torch ~/.cache/flashdreams
```

Alternatively, override these host paths if needed:

```bash
defines.hf_cache=/path/to/hf-cache \
Expand Down