aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2020-06-06 23:15:27 -0700
committerBastien Wirtz <bastien.wirtz@gmail.com>2020-06-06 23:15:27 -0700
commit897f67f0b62884a3dd6b01fbdbba9509e4ed2936 (patch)
treec8fe395c6002c1f812c7c99dc19d9856b3e784b4
parent97fa090e2114ee01459ec80886d2a7d218f58f37 (diff)
downloadhomer-897f67f0b62884a3dd6b01fbdbba9509e4ed2936.tar.gz
homer-897f67f0b62884a3dd6b01fbdbba9509e4ed2936.tar.zst
homer-897f67f0b62884a3dd6b01fbdbba9509e4ed2936.zip
Update docker documentation127450067
-rw-r--r--README.md12
1 files changed, 10 insertions, 2 deletions
diff --git a/README.md b/README.md
index d80c3ea..09218c8 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,14 @@
1# Homer 1# Homer
2[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) 2[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
3[![Contribution Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com) 3[![Contribution Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)
4[![Gitter chat](https://img.shields.io/badge/chat-on_gitter-008080.svg?style=flat-square)](https://gitter.im/homer-dashboard) 4[![Gitter](https://badges.gitter.im/homer-dashboard/community.svg)](https://gitter.im/homer-dashboard/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
5[![Dowload](https://img.shields.io/badge/Dowload-homer.zip-orange)](https://github.com/bastienwirtz/homer/releases/latest/download/homer.zip) 5[![Dowload](https://img.shields.io/badge/Dowload-homer.zip-orange)](https://github.com/bastienwirtz/homer/releases/latest/download/homer.zip)
6[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/awesome-selfhosted/awesome-selfhosted) 6[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/awesome-selfhosted/awesome-selfhosted)
7 7
8A dead simple static **HOM**epage for your serv**ER** to keep your s 8A dead simple static **HOM**epage for your serv**ER** to keep your s
9ervices on hand, from a simple `yaml` configuration file. 9ervices on hand, from a simple `yaml` configuration file.
10 10
11## [Live demo](https://homer-demo.netlify.app) • [Chat](https://gitter.im/homer-dashboard/) 11## [Live demo](https://homer-demo.netlify.app) • [Chat](https://gitter.im/homer-dashboard/community)
12![screenshot](https://raw.github.com/bastienwirtz/homer/master/screenshot.png) 12![screenshot](https://raw.github.com/bastienwirtz/homer/master/screenshot.png)
13 13
14## Table of Contents 14## Table of Contents
@@ -42,6 +42,14 @@ Homer is a full static html/js dashboard, generated from the source in `/src` us
42docker run -p 8080:8080 -v /your/local/config.yml:/www/config.yml -v /your/local/assets/:/www/assets b4bz/homer:latest 42docker run -p 8080:8080 -v /your/local/config.yml:/www/config.yml -v /your/local/assets/:/www/assets b4bz/homer:latest
43``` 43```
44 44
45As a bind mount is used here, docker will not copy the initial content of the `assets` directory to the mounted directory.
46You can initialise your assets directory with the content provided in this repository
47```sh
48cp -r /public/assets/* /your/local/assets/
49```
50
51**Alternatively** if you just want to provide images/icons without customizing the other files (app manifest & pwa icons), you can mount a custom directory in the `www` directory and use it in your `config.yml` for icons path.
52
45### Using the release tarball (prebuilt, ready to use) 53### Using the release tarball (prebuilt, ready to use)
46 54
47Download and extract the latest the latest release (`homer.zip`) from the [release page](https://github.com/bastienwirtz/homer/releases), rename the `config.yml.dist` file to `config.yml`, and put it behind a webserver. 55Download and extract the latest the latest release (`homer.zip`) from the [release page](https://github.com/bastienwirtz/homer/releases), rename the `config.yml.dist` file to `config.yml`, and put it behind a webserver.