From 94f2219715533e04d3fe3a07fcaf0754ffd1736f Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Wed, 4 Aug 2021 14:51:05 +0800 Subject: [PATCH 1/3] Create dependabot.yml --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..8abca405 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "npm" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "daily" From d06711a1a77e2c6fcaa57cd3b4e4539ba4746bbd Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Wed, 4 Aug 2021 15:19:06 +0800 Subject: [PATCH 2/3] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 53411542..93b6ad93 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,14 @@ Abort. Heroku instance killed the server.js if idle, stupid. Re-pull the latest docker image and create another container with the same volume. +For someone who used my "How-to-use" commands to install Uptime Kuma, you can update by this: +```bash +docker pull uptime-kuma:1 +docker stop uptime-kuma +docker rm uptime-kuma +docker run -d --restart=always -p 3001:3001 -v uptime-kuma:/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. ### Without Docker From 2c2ac9dc59cfa349ab24d71c0de61257bc504aa9 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Thu, 5 Aug 2021 12:13:39 +0800 Subject: [PATCH 3/3] Delete dependabot.yml --- .github/dependabot.yml | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 8abca405..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,11 +0,0 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - -version: 2 -updates: - - package-ecosystem: "npm" # See documentation for possible values - directory: "/" # Location of package manifests - schedule: - interval: "daily"