Add new guides for all of the new labspaces

This commit is contained in:
Michael Irwin
2026-04-02 14:42:00 -04:00
parent 346829436f
commit 4959df3e31
11 changed files with 498 additions and 40 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
{{ $image := .Get "image" }}
{{ $modelDownload := .Get "model-download" | default "false" }}
{{ $browserUrl := .Get "browserUrl" | default "http://localhost:3030"}}
{{ $step1 := printf "1. Start the labspace:\n\n ```console\n $ docker compose -f oci://%s up -d\n ```" $image }}
@@ -7,6 +8,6 @@
{{ $step1 = printf "%s\n\n > [!NOTE]\n >\n > The lab may take a few minutes to launch, as this lab requires an AI model that will need to be downloaded." $step1 }}
{{ end }}
{{ $step2 := "2. Open your browser to [http://localhost:3030](http://localhost:3030)." }}
{{ $step2 := printf "2. Open your browser to [%s](%s)." $browserUrl $browserUrl }}
{{ printf "%s\n\n%s" $step1 $step2 | .Page.RenderString (dict "display" "block") }}