1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/hass/README.md

25 lines
421 B
Markdown
Raw Normal View History

2016-10-31 03:28:34 +00:00
home-assistant
==============
2016-11-17 04:23:02 +00:00
## docker-compose.yml
```yaml
hass:
image: vimagick/hass
volumes:
- ./data:/etc/hass
net: host
restart: unless-stopped
```
## up and running
```bash
$ docker-compose up -d
$ docker-compose logs -f
$ curl http://localhost:8123
```
> More python packages will be installed during startup.
2016-11-26 13:44:33 +00:00
> The missing package can be installed: `pip install --target=data sqlalchemy==1.1.3`.