1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/hass/README.md
2016-11-26 21:44:33 +08:00

25 lines
421 B
Markdown

home-assistant
==============
## 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.
> The missing package can be installed: `pip install --target=data sqlalchemy==1.1.3`.