From 7afd35e246c190656e8c950e39fbcf046d77fc3d Mon Sep 17 00:00:00 2001 From: Louis Lam <louislam@users.noreply.github.com> Date: Tue, 7 Feb 2023 17:18:20 +0800 Subject: [PATCH] Updated Troubleshooting (markdown) --- Troubleshooting.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Troubleshooting.md b/Troubleshooting.md index 2b50807..fa92ea2 100644 --- a/Troubleshooting.md +++ b/Troubleshooting.md @@ -5,12 +5,18 @@ If your Uptime Kuma reports DOWN of your service, sometimes you would like to kn Go into your container's bash. -``` +```bash docker exec -it uptime-kuma bash ``` -Then you can test with these commands for example: +Install `curl` + +```bash +apt update && apt --yes install curl ``` + +Then you can test with these commands for example: +```bash curl https://google.com ping google.com ```