Create README.md

This commit is contained in:
Pascal Vizeli
2017-03-18 23:36:17 +01:00
committed by GitHub
parent 94f6ed3843
commit bb6d4fe841

27
README.md Normal file
View File

@@ -0,0 +1,27 @@
# hassio-addons
Docker addons for HassIO
## 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',
'image': 'xy',
'verson': '1.2',
'description': 'long descripton',
'startup': 'before|after',
'ports': [123, ],
'map_config': bool,
'map_ssl': bool,
}
```