I've been trying to get the new shiny UI to work but without success.
here is my runtime
# set some vars
podman run \
--name $dagger_runner \
--restart always \
-d \
-e _EXPERIMENTAL_DAGGER_TUI=1 \
-v "$dagger_cache:$default_state_dir" \
--privileged \
ghcr.io/dagger/engine:"$engine_version" --debug
and example container
// ...
img := client.Pipeline("install").Container().From(baseImage)
base := img.
WithEnvVariable("CI", "true").
WithEnvVariable("YARN_CACHE_FOLDER", yarnCacheDir).
WithEntrypoint(nil).
WithSecretVariable(nxCloudTokenEnv, nxCloudToken).
WithSecretVariable(geoipLicenseKeyEnv, geoipLicenseKey).
WithWorkdir(path).
WithMountedDirectory("./", installDependencies).
WithMountedCache("./node_modules", client.CacheVolume("node_modules")).
WithMountedCache(yarnCacheDir, client.CacheVolume("yarn")).
WithMountedCache("./yarn/install-state.gz", client.CacheVolume("install-state")).
WithExec([]string{"/bin/sh", "-c", `
apk add --no-cache build-base python3 gcc jq git && \
ln -sf /usr/bin/python3 /usr/bin/python && \
yarn install --immutable
`})
// ...
running this with the following but still no fancy term ui ๐
export _EXPERIMENTAL_DAGGER_TUI=1 # export client side also just in case
dagger run go run main.go
Something I am missing?
I see nothing out of the ordinary in the logs either
