Files
tellstick-addon/README.md
2017-04-10 11:14:55 +02:00

34 lines
588 B
Markdown
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# hassio-addons
Docker addons for HassIO
[HassIO](https://github.com/pvizeli/hassio)
[HassIO-Build](https://github.com/pvizeli/hassio-build)
## Addon folder
```
addon_name:
Dockerfile
config.json
```
Use `FROM %%BASE_IMAGE%%` inside your docker file. We use alpine linux 3.5 for addons.
## Addon config
```json
{
"name": "xy",
"verson": "1.2",
"slug": "folder",
"description": "long descripton",
"startup": "before|after|once",
"boot": "start|stop|manual",
"ports": [123],
"map_config": "bool",
"map_ssl": "bool",
 "map_data": "bool",
"options": {},
}
```