1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00

add esphome

This commit is contained in:
kev 2021-11-04 11:55:13 +08:00
parent 3bac9cc61b
commit d4505ae44c
3 changed files with 24 additions and 0 deletions

@ -322,6 +322,7 @@ A collection of delicious docker recipes.
- [x] elastichq/elasticsearch-hq :mag: - [x] elastichq/elasticsearch-hq :mag:
- [x] elasticdump/elasticsearch-dump :mag: - [x] elasticdump/elasticsearch-dump :mag:
- [x] elk - [x] elk
- [x] esphome/esphome
- [x] quay.io/coreos/etcd - [x] quay.io/coreos/etcd
- [x] audreyt/ethercalc - [x] audreyt/ethercalc
- [x] flogo/flogo-docker - [x] flogo/flogo-docker

14
esphome/README.md Normal file

@ -0,0 +1,14 @@
esphome
=======
[ESPHome][1] is a system to control your ESP8266/ESP32 by simple yet powerful
configuration files and control them remotely through Home Automation systems.
## up and running
```bash
$ docker-compose up -d
$ curl http://127.0.0.1:6052
```
[1]: https://esphome.io/

@ -0,0 +1,9 @@
version: "3.8"
services:
esphome:
image: esphome/esphome
ports:
- "6052:6052"
volumes:
- ./data:/config
restart: unless-stopped