The only issue I’m still trying to solve is how to restore the Machinon theme.
On my old (non-Docker) setup, I simply placed the theme folder under www/styles, but I can't find that path in the new setup.
Here is my current docker-compose.yml:
Code: Select all
services:
domoticz:
container_name: domoticz
image: domoticz/domoticz:latest
restart: unless-stopped
ports:
- 8080:8080
- 6144:6144
- 1443:1443
volumes:
- ./config:/opt/domoticz/userdata
devices:
- /dev/serial/by-id/usb-FTDI_FT232R_USB_UART_A15Z54NR-if00-port0:/dev/ttyUSB0
networks: {}
Code: Select all
/home/user/docker/stacks/domoticz/config/
I only see a "www/templates/"
What am I missing?
Do I need to mount an additional volume to access the web root, or is the theme approach different in the Docker image?
Thanks in advance for your help!