From cd5c05e72aee741d8d43c7d067a4f151cdef67d8 Mon Sep 17 00:00:00 2001 From: Leigh Morresi <275001+dgtlmoon@users.noreply.github.com> Date: Tue, 2 Feb 2021 23:41:28 +0100 Subject: [PATCH] Provide named containers and remove all existing --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 680415a3..b541e35b 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Know when ... **Get monitoring now! super simple, one command!** ```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. @@ -30,8 +30,9 @@ Highly recommended :) ```bash docker pull dgtlmoon/changedetection.io -docker kill $(docker ps|grep changedetection|awk '{print $1}') -docker run -d --restart always -p "127.0.0.1:5000:5000" -v datastore-volume:/datastore dgtlmoon/changedetection.io +docker kill $(docker ps -a|grep changedetection.io|awk '{print $1}') +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