From c98536ace4abc1cb05221a90091ed04792044378 Mon Sep 17 00:00:00 2001 From: Maeglin Date: Wed, 23 Nov 2022 16:42:36 +0300 Subject: [PATCH] Update README.md - Make docker instructions easier to follow on Windows (#1158) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b0a4cb10..a6facc3d 100644 --- a/README.md +++ b/README.md @@ -108,8 +108,8 @@ _Now with per-site configurable support for using a fast built in HTTP fetcher o ### Docker ``` docker pull 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 kill $(docker ps -a -f name=changedetection.io -q) +docker rm $(docker ps -a -f name=changedetection.io -q) docker run -d --restart always -p "127.0.0.1:5000:5000" -v datastore-volume:/datastore --name changedetection.io dgtlmoon/changedetection.io ```