diff --git a/umbrel-dev b/umbrel-dev index c03c396..f92f1cd 100755 --- a/umbrel-dev +++ b/umbrel-dev @@ -16,6 +16,7 @@ Commands: halt Halt the development VM destroy Destroy the development VM rebuild [] Rebuild all or a specific container + logs Stream Umbrel logs run Run a command inside the development VM ssh Get an SSH session inside the development VM EOF @@ -82,6 +83,12 @@ if [[ "$command" = "rebuild" ]]; then exit fi +# Stream Umbrel logs +if [[ "$command" = "logs" ]]; then + run "docker-compose logs -f" + exit +fi + # Run a command inside the development VM if [[ "$command" = "run" ]]; then run "$2"