From 15ada7c8e047d3f92fb43c64122a92fd486b6018 Mon Sep 17 00:00:00 2001 From: Radu Ursache <3800336+rursache@users.noreply.github.com> Date: Tue, 14 Feb 2023 21:54:47 +0200 Subject: [PATCH] Fix the docker run command in README.md Include volume mounting, time zone, -d and better formatting --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 691504f..87ce6ac 100644 --- a/README.md +++ b/README.md @@ -16,10 +16,13 @@ [Configuration & Docker Compose](https://hay-kot.github.io/homebox/quick-start) ```bash -docker run --name=homebox \ - --restart=always \ - --publish=3100:7745 \ - ghcr.io/hay-kot/homebox:latest +docker run -d \ + --name homebox \ + --restart unless-stopped \ + -p 3100:7745 \ + -e TZ=Europe/Bucharest \ + -v ${HOME}/.homebox:/data \ + ghcr.io/hay-kot/homebox:latest ``` ## Credits