Provide named containers and remove all existing

pull/11/head
Leigh Morresi 4 years ago
parent 3034d17c06
commit cd5c05e72a

@ -19,7 +19,7 @@ Know when ...
**Get monitoring now! super simple, one command!** **Get monitoring now! super simple, one command!**
```bash ```bash
docker run -d --restart always -p "127.0.0.1:5000:5000" -v datastore-volume:/datastore dgtlmoon/changedetection.io docker run -d --restart always -p "127.0.0.1:5000:5000" -v datastore-volume:/datastore --name changedetection.io dgtlmoon/changedetection.io
``` ```
Now visit http://127.0.0.1:5000 , You should now be able to access the UI. Now visit http://127.0.0.1:5000 , You should now be able to access the UI.
@ -30,8 +30,9 @@ Highly recommended :)
```bash ```bash
docker pull dgtlmoon/changedetection.io docker pull dgtlmoon/changedetection.io
docker kill $(docker ps|grep changedetection|awk '{print $1}') docker kill $(docker ps -a|grep changedetection.io|awk '{print $1}')
docker run -d --restart always -p "127.0.0.1:5000:5000" -v datastore-volume:/datastore dgtlmoon/changedetection.io docker rm $(docker ps -a|grep changedetection.io|awk '{print $1}')
docker run -d --restart always -p "127.0.0.1:5000:5000" -v datastore-volume:/datastore --name changedetection.io dgtlmoon/changedetection.io
``` ```
### Screenshots ### Screenshots

Loading…
Cancel
Save