Skip to content

Commit 51ed7b7

Browse files
Merge pull request #981 from yasinBursali/fix/dreamforge-version-pin
fix(dreamforge): pin image to v0.1.0 for reproducible deployments
2 parents 16d55a8 + 148faf0 commit 51ed7b7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dream-server/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ LANGFUSE_INIT_USER_PASSWORD= # auto-generated during install
256256
# LLAMA_SERVER_MEMORY_LIMIT=64G
257257

258258
#=== DreamForge (Local Agentic Coding) ===
259-
# DREAMFORGE_IMAGE=ghcr.io/light-heart-labs/dreamforge:latest
259+
# DREAMFORGE_IMAGE=ghcr.io/light-heart-labs/dreamforge:v0.1.0
260260
# DREAMFORGE_PORT=3010
261261
# DREAMFORGE_PERMISSION_MODE=accept_edits
262262
# DREAMFORGE_MAX_TURNS=25

dream-server/extensions/services/dreamforge/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
dreamforge:
3-
image: ${DREAMFORGE_IMAGE:-ghcr.io/light-heart-labs/dreamforge:latest}
3+
image: ${DREAMFORGE_IMAGE:-ghcr.io/light-heart-labs/dreamforge:v0.1.0}
44
build:
55
context: ./extensions/services/dreamforge
66
dockerfile: Dockerfile.rust

dream-server/installers/phases/08-images.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ fi
4747
[[ "$ENABLE_RAG" == "true" ]] && PULL_LIST+=("qdrant/qdrant:v1.16.3|QDRANT — memory vault")
4848
[[ "$ENABLE_OPENCLAW" == "true" ]] && PULL_LIST+=("ghcr.io/openclaw/openclaw:2026.3.8|OPENCLAW — agent framework")
4949
[[ "$ENABLE_RAG" == "true" ]] && PULL_LIST+=("ghcr.io/huggingface/text-embeddings-inference:cpu-1.9.1|TEI — embedding engine")
50-
[[ "${ENABLE_DREAMFORGE:-}" == "true" ]] && PULL_LIST+=("ghcr.io/light-heart-labs/dreamforge:latest|DREAMFORGE — agent system")
50+
[[ "${ENABLE_DREAMFORGE:-}" == "true" ]] && PULL_LIST+=("ghcr.io/light-heart-labs/dreamforge:v0.1.0|DREAMFORGE — agent system")
5151

5252
if $DRY_RUN; then
5353
ai "[DRY RUN] I would download ${#PULL_LIST[@]} modules."

dream-server/installers/phases/11-services.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ MODELS_INI_EOF
313313
_build_services=(dashboard dashboard-api ape token-spy privacy-shield)
314314
[[ "$ENABLE_COMFYUI" == "true" ]] && _build_services+=(comfyui)
315315
if [[ "${ENABLE_DREAMFORGE:-}" == "true" ]]; then
316-
_dreamforge_image="${DREAMFORGE_IMAGE:-ghcr.io/light-heart-labs/dreamforge:latest}"
316+
_dreamforge_image="${DREAMFORGE_IMAGE:-ghcr.io/light-heart-labs/dreamforge:v0.1.0}"
317317
if ! $DOCKER_CMD image inspect "$_dreamforge_image" &>/dev/null; then
318318
_build_services+=(dreamforge)
319319
else

0 commit comments

Comments
 (0)