1
1
Docker Container for TileBoard: "A simple yet highly configurable Dashboard for HomeAssistant" https://hub.docker.com/r/fbrinker/tileboard
Šis repozitorijs tika arhivēts 2021-05-10. Ir iespējams aplūkot tā failus un to konēt, bet nav iespējams iesūtīt izmaiņas, kā arī izveidot jaunas problēmas vai izmaiņu pieprasījumus.
Iet uz failu
Florian Brinker ecf1c234ae
Visas pārbaudes ir veiksmīgas
continuous-integration/drone/push Build is passing
Update drone url
2019-10-19 23:00:12 +02:00
.drone.yml Renamed drone config 2019-10-19 18:44:37 +02:00
Dockerfile Add Dockerfile 2019-10-19 18:00:57 +02:00
README.md Update drone url 2019-10-19 23:00:12 +02:00

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. 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.

Sources

Have a look at the Git-Repository.