diff --git a/lsio/domoticz/docker-compose.yaml b/lsio/domoticz/docker-compose.yaml index 3b0def6..46ec55b 100644 --- a/lsio/domoticz/docker-compose.yaml +++ b/lsio/domoticz/docker-compose.yaml @@ -18,6 +18,8 @@ services: - TZ=${TZ:-Europe/Amsterdam} # Sets webroot to domoticz for usage with subfolder reverse proxy. Not needed unless reverse proxying. - WEBROOT=domoticz # optional + # Sets path to database. Do not set unless you know what this does. + - DBASE= # optional volumes: # Where Domoticz stores config files and data. - ${BASEDIR:-/volume1/docker}/domoticz/config:/config diff --git a/lsio/domoticz/docker-run.sh b/lsio/domoticz/docker-run.sh index da7d3ab..a96b3e3 100644 --- a/lsio/domoticz/docker-run.sh +++ b/lsio/domoticz/docker-run.sh @@ -10,6 +10,7 @@ docker run -d \ -e PGID=${PGID:-100} `# for UserID` \ -e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \ -e WEBROOT=domoticz `# optional` `# Sets webroot to domoticz for usage with subfolder reverse proxy. Not needed unless reverse proxying.` \ + -e DBASE= `# optional` `# Sets path to database. Do not set unless you know what this does.` \ -p 8080:8080 `# WebUI` \ -p 6144:6144 `# Domoticz communication port.` \ -p 1443:1443 `# Domoticz communication port.` \