From c792f87520f535acaf226530246f34fa2a989672 Mon Sep 17 00:00:00 2001 From: namnatulco Date: Mon, 15 Dec 2025 07:50:12 +0100 Subject: [PATCH] Convenience script call updated - use curl for consistency - copied the warning from the install script (i.e., do not use for prod envs) --- docs/operators/tutorial.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/operators/tutorial.md b/docs/operators/tutorial.md index 2245c3f..f1e6f7e 100644 --- a/docs/operators/tutorial.md +++ b/docs/operators/tutorial.md @@ -36,7 +36,8 @@ Otherwise, here are the step required: ssh # docker install convenience script -wget -O- https://get.docker.com | bash +# not suitable for production environments - refer to the script header for alternatives +curl https://get.docker.com | bash # check that docker was installed correctly sudo docker run hello-world