mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-27 16:54:04 +00:00
Updated 🆙 How to Update (markdown)
parent
2732e518fb
commit
76662ab226
1 changed files with 14 additions and 0 deletions
|
@ -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 pull louislam/uptime-kuma:1
|
||||||
docker stop uptime-kuma
|
docker stop uptime-kuma
|
||||||
docker rm 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
|
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.
|
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
|
## 🆙 💪🏻 Non-Docker
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
Loading…
Reference in a new issue