diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -43,8 +43,8 @@ | |||
43 | - [Features](#features) | 43 | - [Features](#features) |
44 | - [Getting started](#getting-started) | 44 | - [Getting started](#getting-started) |
45 | - [Configuration](docs/configuration.md) | 45 | - [Configuration](docs/configuration.md) |
46 | - [Custom services](docs/customservices.md) | ||
46 | - [Tips & tricks](docs/tips-and-tricks.md) | 47 | - [Tips & tricks](docs/tips-and-tricks.md) |
47 | - [Roadmap](#roadmap) | ||
48 | - [Development](docs/development.md) | 48 | - [Development](docs/development.md) |
49 | 49 | ||
50 | 50 | ||
@@ -73,7 +73,11 @@ See [documentation](docs/configuration.md) for information about the configurati | |||
73 | To launch container: | 73 | To launch container: |
74 | 74 | ||
75 | ```sh | 75 | ```sh |
76 | docker run -p 8080:8080 -v /your/local/assets/:/www/assets b4bz/homer:latest | 76 | docker run -d \ |
77 | -p 8080:8080 \ | ||
78 | -v </your/local/assets/>:/www/assets \ | ||
79 | --restart=always \ | ||
80 | b4bz/homer:latest | ||
77 | ``` | 81 | ``` |
78 | 82 | ||
79 | Default 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" [...]`). | 83 | Default 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" [...]`). |
@@ -130,9 +134,3 @@ npm run build | |||
130 | ``` | 134 | ``` |
131 | 135 | ||
132 | Then your dashboard is ready to use in the `/dist` directory. | 136 | Then your dashboard is ready to use in the `/dist` directory. |
133 | |||
134 | |||
135 | ## Roadmap | ||
136 | |||
137 | - [ ] Add new themes. | ||
138 | - [ ] Add support for custom service card (add custom feature to some service / app link) | ||