From dabdf8066440489e3e4bbbda7eb448dcf846a238 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Mon, 21 Mar 2022 15:43:04 +0800 Subject: [PATCH 1/9] Created Status Page (markdown) --- Status-Page.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Status-Page.md diff --git a/Status-Page.md b/Status-Page.md new file mode 100644 index 0000000..cafe489 --- /dev/null +++ b/Status-Page.md @@ -0,0 +1,3 @@ +Special Slug: `default` + +`/status` is pointing to `/status/default`. \ No newline at end of file From d52878d13e198fbd3bde49d093e316f64babc3ad Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Mon, 21 Mar 2022 15:43:45 +0800 Subject: [PATCH 2/9] Updated Status Page (markdown) --- Status-Page.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Status-Page.md b/Status-Page.md index cafe489..116ecfa 100644 --- a/Status-Page.md +++ b/Status-Page.md @@ -1,3 +1,5 @@ -Special Slug: `default` +Multiple status pages is supported in 1.3.0. + +Special slug: `default` `/status` is pointing to `/status/default`. \ No newline at end of file From b86783a54243e3abe4b0b370662362245af8b633 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Mon, 21 Mar 2022 15:43:54 +0800 Subject: [PATCH 3/9] Updated Status Page (markdown) --- Status-Page.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Status-Page.md b/Status-Page.md index 116ecfa..d288570 100644 --- a/Status-Page.md +++ b/Status-Page.md @@ -1,4 +1,4 @@ -Multiple status pages is supported in 1.3.0. +Multiple status pages is supported in 1.13.0. Special slug: `default` From 4d4bfab8590f0891f8d8e736c69b64be2f4c8a9a Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Thu, 24 Mar 2022 22:39:10 +0800 Subject: [PATCH 4/9] Update to undefined --- 🆙-How-to-Update.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/🆙-How-to-Update.md b/🆙-How-to-Update.md index c65500a..d9729e2 100644 --- a/🆙-How-to-Update.md +++ b/🆙-How-to-Update.md @@ -20,7 +20,7 @@ cd # Update from git git fetch --all -git checkout 1.12.1 --force +git checkout undefined --force # Install dependenies and prebuilt npm ci --production From 68e2952c0f102e880b28973af00803eab76c4ad6 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Thu, 24 Mar 2022 22:40:35 +0800 Subject: [PATCH 5/9] Update to 1.13.0 --- 🆙-How-to-Update.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/🆙-How-to-Update.md b/🆙-How-to-Update.md index d9729e2..0f0078c 100644 --- a/🆙-How-to-Update.md +++ b/🆙-How-to-Update.md @@ -20,7 +20,7 @@ cd # Update from git git fetch --all -git checkout undefined --force +git checkout 1.13.0 --force # Install dependenies and prebuilt npm ci --production From 2732e518fbdf554aeb830dd560441bedb8c38629 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Thu, 24 Mar 2022 23:56:32 +0800 Subject: [PATCH 6/9] Update to 1.13.1 --- 🆙-How-to-Update.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/🆙-How-to-Update.md b/🆙-How-to-Update.md index 0f0078c..068dec8 100644 --- a/🆙-How-to-Update.md +++ b/🆙-How-to-Update.md @@ -20,7 +20,7 @@ cd # Update from git git fetch --all -git checkout 1.13.0 --force +git checkout 1.13.1 --force # Install dependenies and prebuilt npm ci --production From 76662ab226a9e972342cefce8edacd11d82c5a76 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Fri, 25 Mar 2022 11:35:39 +0800 Subject: [PATCH 7/9] =?UTF-8?q?Updated=20=F0=9F=86=99=20How=20to=20Update?= =?UTF-8?q?=20(markdown)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 🆙-How-to-Update.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/🆙-How-to-Update.md b/🆙-How-to-Update.md index 068dec8..4e5989e 100644 --- a/🆙-How-to-Update.md +++ b/🆙-How-to-Update.md @@ -8,11 +8,25 @@ For someone who used my "How-to-use" commands to install Uptime Kuma, you can up docker pull louislam/uptime-kuma:1 docker stop uptime-kuma docker rm uptime-kuma + +# Default docker run -d --restart=always -p 3001:3001 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma:1 + +# If you are not using default value +# docker run -d --restart=always -p :3001 -v :/app/data --name uptime-kuma louislam/uptime-kuma:1 ``` PS: For every new release, it takes some time to build the docker image, please be patient if it is not available yet. +## Docker-Compose + +```bash +cd "" +docker pull louislam/uptime-kuma:1 +docker stop uptime-kuma +docker-compose up -d --force-recreate +``` + ## 🆙 💪🏻 Non-Docker ```bash From 4af35d57c8f847ca0e00b405a587434c8bc46789 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Tue, 29 Mar 2022 18:29:48 +0800 Subject: [PATCH 8/9] Created Cloudflare Tunnel (markdown) --- Cloudflare-Tunnel.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 Cloudflare-Tunnel.md diff --git a/Cloudflare-Tunnel.md b/Cloudflare-Tunnel.md new file mode 100644 index 0000000..30404ce --- /dev/null +++ b/Cloudflare-Tunnel.md @@ -0,0 +1 @@ +TODO \ No newline at end of file From 9cb9380609778edca48a092d54e419e433023584 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Tue, 29 Mar 2022 18:30:04 +0800 Subject: [PATCH 9/9] Updated Cloudflare Tunnel (markdown) --- Cloudflare-Tunnel.md => Reverse-Proxy-with-Cloudflare-Tunnel.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Cloudflare-Tunnel.md => Reverse-Proxy-with-Cloudflare-Tunnel.md (100%) diff --git a/Cloudflare-Tunnel.md b/Reverse-Proxy-with-Cloudflare-Tunnel.md similarity index 100% rename from Cloudflare-Tunnel.md rename to Reverse-Proxy-with-Cloudflare-Tunnel.md