Hi brother,
first of all: AMAZING PROJECT
now lets to go some issues:
1- even when I specified the esphome config folder in docker-compose.yaml it does not show esphome projects on dashboard
2- while building in advanced mode I got error:
project name needs to have a namespace.
why is this a must? ;-)
here my config:
cat .env
TZ=Europe/London
ECD_PORT=8099
ECD_USE_ESPHOME_SHARED_PATH=true
# Recommended for standalone deployments exposed on a LAN.
# Set ECD_AUTH_MODE=none only if another trusted layer handles access.
ECD_AUTH_MODE=basic
ECD_AUTH_USERNAME=admin
ECD_AUTH_PASSWORD=password
here my docker:
services:
ecd:
image: ghcr.io/sokolsok/esp-config-designer:latest
container_name: ecd
restart: unless-stopped
network_mode: host
environment:
TZ: ${TZ:-Europe/London}
ECD_MODE: standalone
ECD_PORT: ${ECD_PORT:-8099}
ECD_USE_ESPHOME_SHARED_PATH: ${ECD_USE_ESPHOME_SHARED_PATH:-false}
ECD_AUTH_MODE: ${ECD_AUTH_MODE:-basic}
ECD_AUTH_USERNAME: ${ECD_AUTH_USERNAME:-admin}
ECD_AUTH_PASSWORD: ${ECD_AUTH_PASSWORD:-password}
volumes:
- ./my-path-to-esphome-config:/config
- ./data:/data
- ./build:/build
- /etc/localtime:/etc/localtime:ro
Hi brother,
first of all: AMAZING PROJECT
now lets to go some issues:
1- even when I specified the esphome config folder in docker-compose.yaml it does not show esphome projects on dashboard
2- while building in advanced mode I got error:
project name needs to have a namespace.why is this a must? ;-)
here my config:
here my docker: