Browse Source

improve the docker script

pull/22/head
Louis Lam 3 years ago
committed by GitHub
parent
commit
a6e16116f2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      README.md

8
README.md

@ -19,7 +19,11 @@ It is a self-hosted monitoring tool like "Uptime Robot".
### Docker ### Docker
```bash ```bash
docker run -d --restart=always -p 3001:3001 louislam/uptime-kuma # Create a volume
docker volume create uptime-kuma
# Start the container
docker run -d --restart=always -p 3001:3001 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma
``` ```
Browse to http://localhost:3001 after started. Browse to http://localhost:3001 after started.
@ -27,7 +31,7 @@ Browse to http://localhost:3001 after started.
Change Port and Volume Change Port and Volume
```bash ```bash
docker run -d --restart=always -p <YOUR_PORT>:3001 -v <YOUR_DIR OR VOLUME>:/app/data louislam/uptime-kuma docker run -d --restart=always -p <YOUR_PORT>:3001 -v <YOUR_DIR OR VOLUME>:/app/data --name uptime-kuma louislam/uptime-kuma
``` ```
### Without Docker ### Without Docker

Loading…
Cancel
Save