Docker Container for TileBoard: "A simple yet highly configurable Dashboard for HomeAssistant"
Ce dépôt a été archivé le 2021-06-21. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
Aller au fichier
Florian Brinker 0bdcdfa673 Recreate container build and tagging 2021-03-20 18:28:40 +01:00
.drone.yml Recreate container build and tagging 2021-03-20 18:28:40 +01:00
.gitignore Recreate container build and tagging 2021-03-20 18:28:40 +01:00
Dockerfile Recreate container build and tagging 2021-03-20 18:28:40 +01:00
README.md Update Readme 2019-10-21 13:14:49 +00:00
build.sh Recreate container build and tagging 2021-03-20 18:28:40 +01:00

README.md

TileBoard Docker-Container

Build Status Docker Pulls

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.

Contribute

You can open any new issues here. The builds are automated on changes of the official TileBoard repository.

Have a look at the Dockerfile.

Usage

You have to mount your config.js file into the /tileboard directory of the Docker container. You can see an example config.js file in the official repository.

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.