mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:36 +02:00
add esphome
This commit is contained in:
parent
3bac9cc61b
commit
d4505ae44c
@ -322,6 +322,7 @@ A collection of delicious docker recipes.
|
||||
- [x] elastichq/elasticsearch-hq :mag:
|
||||
- [x] elasticdump/elasticsearch-dump :mag:
|
||||
- [x] elk
|
||||
- [x] esphome/esphome
|
||||
- [x] quay.io/coreos/etcd
|
||||
- [x] audreyt/ethercalc
|
||||
- [x] flogo/flogo-docker
|
||||
|
14
esphome/README.md
Normal file
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/
|
9
esphome/docker-compose.yml
Normal file
9
esphome/docker-compose.yml
Normal file
@ -0,0 +1,9 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
esphome:
|
||||
image: esphome/esphome
|
||||
ports:
|
||||
- "6052:6052"
|
||||
volumes:
|
||||
- ./data:/config
|
||||
restart: unless-stopped
|
Loading…
Reference in New Issue
Block a user