New Domoticz instance in Docker how to add new Themes
Posted: Saturday 14 June 2025 11:12
I'm in the process of setting up a new Domoticz instance using Docker, and so far everything is working well — including Z-Wave JS, MQTT, P1 USB, etc.
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:
This creates the expected files and folders (e.g., the database) under:
However, there is no "www/styles/" directory like in my previous install, so I’m unsure where or how to place the machinon theme files.
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!
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!