diff options
author | 2023-03-31 17:53:32 +0300 | |
---|---|---|
committer | 2023-03-31 16:53:32 +0200 | |
commit | b3390f6ff77ce55b8067032fc2251909e3acc85c (patch) | |
tree | 7083b1795f2b80c44354406815b6e2b7f229fa66 | |
parent | dee5586bf5b620d4904da5d8123f8782d0796fd9 (diff) | |
download | it-tools-b3390f6ff77ce55b8067032fc2251909e3acc85c.tar.gz it-tools-b3390f6ff77ce55b8067032fc2251909e3acc85c.tar.zst it-tools-b3390f6ff77ce55b8067032fc2251909e3acc85c.zip |
chore(docker): fixed the docker-run command in README (#323)
-rw-r--r-- | README.md | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 |