From 999e598e445d076a2fd4eb43928e2aed6434adc9 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Sun, 9 Nov 2025 23:48:43 +0000 Subject: [PATCH] Improve bootstrap token instructions for all container types Updated FirstRunSetup to show generic container commands that work across different orchestration platforms: - Use placeholder instead of hardcoded "pulse" - Add kubectl exec example for Kubernetes/Helm deployments - Clarify "From container host" applies to Docker, Podman, etc. This ensures the instructions work for Docker Compose, Swarm, Helm, and any other container orchestrator where the container might have a different name. --- frontend-modern/src/components/FirstRunSetup.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/frontend-modern/src/components/FirstRunSetup.tsx b/frontend-modern/src/components/FirstRunSetup.tsx index c5726ed..f93dd85 100644 --- a/frontend-modern/src/components/FirstRunSetup.tsx +++ b/frontend-modern/src/components/FirstRunSetup.tsx @@ -320,9 +320,11 @@ IMPORTANT: Keep these credentials secure! >
-
# From Docker host:
- docker exec pulse cat {bootstrapTokenPath()} -
# Or from inside container:
+
# From container host:
+ docker exec <container-name> cat {bootstrapTokenPath()} +
# Or kubectl for Kubernetes:
+ kubectl exec <pod-name> -- cat {bootstrapTokenPath()} +
# Or exec into the container:
cat {bootstrapTokenPath()}