Este repositorio ha sido archivado en 2021-05-10. Puedes ver archivos y clonarlo, pero no puedes hacer push o abrir incidencias o pull request.
docker-tileboard-OUTDATED/README.md
Florian Brinker ac09d9f7ef
Todas las comprobaciones han sido exitosas
continuous-integration/drone/push Build is passing
Update Readme
2019-10-19 19:11:48 +02:00

963 B

TileBoard Docker-Container

Build Status

This is a very basic Docker container for TileBoard, "a simple yet highly configurable Dashboard for HomeAssistant".

It contains the sources and starts a simple Python3 webserver to serve TileBoard at port 8000.

Usage

You have to mount your config.js file into the /tileboard directory of the Docker container.

Example

Here is an example, using Docker-Compose:

version: '3'
services:

  tileboard:
    image: fbrinker/tileboard
    volumes:
      - ./config.js:/tileboard/config.js
    ports:
      - "8234:8000"

After a docker-compose up -d, you can reach your TileBoard instance under http://[yourhost-or-ip]:8234.

Sources

Have a look at the Git-Repository.