diff --git a/Reverse-Proxy-with-Cloudflare-Tunnel.md b/Reverse-Proxy-with-Cloudflare-Tunnel.md new file mode 100644 index 0000000..30404ce --- /dev/null +++ b/Reverse-Proxy-with-Cloudflare-Tunnel.md @@ -0,0 +1 @@ +TODO \ No newline at end of file diff --git a/Status-Page.md b/Status-Page.md new file mode 100644 index 0000000..d288570 --- /dev/null +++ b/Status-Page.md @@ -0,0 +1,5 @@ +Multiple status pages is supported in 1.13.0. + +Special slug: `default` + +`/status` is pointing to `/status/default`. \ No newline at end of file diff --git a/🆙-How-to-Update.md b/🆙-How-to-Update.md index c65500a..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 @@ -20,7 +34,7 @@ cd # Update from git git fetch --all -git checkout 1.12.1 --force +git checkout 1.13.1 --force # Install dependenies and prebuilt npm ci --production