Making docker usage with localhost and external ip more clear

pull/3836/head
Rakovskij Stanislav 1 year ago committed by GitHub
parent 5ea9766cd5
commit 02bf4fc31b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -45,7 +45,14 @@ docker run -d --restart=always -p 3001:3001 -v uptime-kuma:/app/data --name upti
⚠️ Please use a **local volume** only. Other types such as NFS are not supported. ⚠️ Please use a **local volume** only. Other types such as NFS are not supported.
Uptime Kuma is now running on http://localhost:3001 Uptime Kuma is now running on http://<your_external_ip>:3001
If you want to run it at localhost (without exposing port for other users or to use with nginx), you can expose port like that:
```bash
docker run -d --restart=always -p 127.0.0.1:3001:3001 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma:1
```
### 💪🏻 Non-Docker ### 💪🏻 Non-Docker

Loading…
Cancel
Save