Fix the docker run command in README.md

Include volume mounting, time zone, -d and better formatting
This commit is contained in:
Radu Ursache 2023-02-14 21:54:47 +02:00 committed by GitHub
parent 44f13f751a
commit 15ada7c8e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,9 +16,12 @@
[Configuration & Docker Compose](https://hay-kot.github.io/homebox/quick-start) [Configuration & Docker Compose](https://hay-kot.github.io/homebox/quick-start)
```bash ```bash
docker run --name=homebox \ docker run -d \
--restart=always \ --name homebox \
--publish=3100:7745 \ --restart unless-stopped \
-p 3100:7745 \
-e TZ=Europe/Bucharest \
-v ${HOME}/.homebox:/data \
ghcr.io/hay-kot/homebox:latest ghcr.io/hay-kot/homebox:latest
``` ```