From aadf0124644d93cac41ed46194db8d9019dcc312 Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Sun, 29 Jan 2023 17:07:02 +0100 Subject: [PATCH] armbian-next: do-not-fix docker-asking-for-docker error by adding a "tip" --- lib/functions/cli/cli-docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions/cli/cli-docker.sh b/lib/functions/cli/cli-docker.sh index ffdc89eece..9d645e61bb 100644 --- a/lib/functions/cli/cli-docker.sh +++ b/lib/functions/cli/cli-docker.sh @@ -6,7 +6,7 @@ function cli_docker_pre_run() { # make sure we're not _ALREADY_ running under docker... otherwise eternal loop? if [[ "${ARMBIAN_RUNNING_IN_CONTAINER}" == "yes" ]]; then - exit_with_error "asking for docker... inside docker. how did this happen? so sorry." + exit_with_error "asking for docker... inside docker. how did this happen? Tip: you don't need 'docker' to run armbian-next inside Docker; it's automatically detected and used when appropriate." fi }