mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-02-20 02:25:56 +00:00
Merge branch 'master' of https://github.com/louislam/uptime-kuma.wiki
commit
4407cac07c
3 changed files with 21 additions and 1 deletions
1
Reverse-Proxy-with-Cloudflare-Tunnel.md
Normal file
1
Reverse-Proxy-with-Cloudflare-Tunnel.md
Normal file
|
@ -0,0 +1 @@
|
|||
TODO
|
5
Status-Page.md
Normal file
5
Status-Page.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
Multiple status pages is supported in 1.13.0.
|
||||
|
||||
Special slug: `default`
|
||||
|
||||
`/status` is pointing to `/status/default`.
|
|
@ -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 <YOUR PORT>:3001 -v <YOUR VOLUME>:/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 "<YOUR docker-compose.yml DIRECTORY>"
|
||||
docker pull louislam/uptime-kuma:1
|
||||
docker stop uptime-kuma
|
||||
docker-compose up -d --force-recreate
|
||||
```
|
||||
|
||||
## 🆙 💪🏻 Non-Docker
|
||||
|
||||
```bash
|
||||
|
@ -20,7 +34,7 @@ cd <uptime-kuma-directory>
|
|||
|
||||
# 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
|
||||
|
|
Loading…
Add table
Reference in a new issue