From d1e5293517dd9433660d5e83288c34c9d0c9c1f3 Mon Sep 17 00:00:00 2001 From: Radu Ursache <3800336+rursache@users.noreply.github.com> Date: Fri, 31 Mar 2023 16:33:20 +0300 Subject: [PATCH] Fixed the docker-run command in README --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bc731489..9fdf82be 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,11 @@ You have an idea of a tool? Submit a [feature request](https://github.com/Corent Self host your own version of it-tools in your homelab with docker: ```sh -docker run -d -p 8080:80 --name it-tools -it corentinth/it-tools - +docker run -d \ + --name it-tools \ + --restart unless-stopped \ + -p 8080:80 \ + corentinth/it-tools:latest ``` ## Contribute