mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-14 11:23:34 +02:00
25 lines
421 B
Markdown
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`.
|