aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--README.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/README.md b/README.md
index 33716f6..945fa1f 100644
--- a/README.md
+++ b/README.md
@@ -73,7 +73,11 @@ See [documentation](docs/configuration.md) for information about the configurati
73To launch container: 73To launch container:
74 74
75```sh 75```sh
76docker run -p 8080:8080 -v /your/local/assets/:/www/assets b4bz/homer:latest 76docker run -d \
77 -p 8080:8080 \
78 -v </your/local/assets/>:/www/assets \
79 --restart=always \
80 b4bz/homer:latest
77``` 81```
78 82
79Default assets will be automatically installed in the `/www/assets` directory. Use `UID` and/or `GID` env var to change the assets owner (`docker run -e "UID=1000" -e "GID=1000" [...]`). 83Default assets will be automatically installed in the `/www/assets` directory. Use `UID` and/or `GID` env var to change the assets owner (`docker run -e "UID=1000" -e "GID=1000" [...]`).