mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-31 18:17:25 +01:00
24 lines
334 B
Markdown
24 lines
334 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.
|