mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
28 lines
595 B
YAML
28 lines
595 B
YAML
|
# https://esphome.io/
|
||
|
|
||
|
# system to control your microcontrollers by simple yet powerful configuration files and control them remotely through Home Automation systems
|
||
|
|
||
|
name: esphome
|
||
|
|
||
|
services:
|
||
|
esphome:
|
||
|
container_name: esphome
|
||
|
image: ghcr.io/esphome/esphome
|
||
|
volumes:
|
||
|
- ./config:/config
|
||
|
- /etc/localtime:/etc/localtime:ro
|
||
|
restart: unless-stopped
|
||
|
privileged: true
|
||
|
ports:
|
||
|
- 6052:6052
|
||
|
environment:
|
||
|
- USERNAME=test
|
||
|
- PASSWORD=ChangeMe
|
||
|
- ESPHOME_DASHBOARD_USE_PING=true
|
||
|
networks:
|
||
|
- proxy
|
||
|
|
||
|
networks:
|
||
|
proxy:
|
||
|
external: true
|