14 lines
318 B
YAML
14 lines
318 B
YAML
version: '3'
|
|
services:
|
|
esphome:
|
|
container_name: esphome
|
|
image: ghcr.io/esphome/esphome:2025.5.1
|
|
volumes:
|
|
- "${PWD}/config:/config"
|
|
- /etc/localtime:/etc/localtime:ro
|
|
restart: always
|
|
privileged: true
|
|
network_mode: host
|
|
environment:
|
|
- USERNAME=admin
|
|
- PASSWORD=admin |