-
-
Notifications
You must be signed in to change notification settings - Fork 160
Description
Hello!
I'm self-hosting Organice in a docker container. When I run it and go to sign in via webdav, I see the URL field populated with "ORGANICE_WEBDAV_URL" instead of the value. Sample command to reproduce:
docker run -d --name organice -p 5000:5000 -e "ORGANICE_WEBDAV_URL=https://my.webdav.com" twohundredok/organice:latest
The same occurs if I save the URL in an environment file and mount it to /opt/organice:
docker run -d --name organice -p :5000:5000 -v $PWD/docker/organice/.env:/opt/organice/.env twohundredok/organice:latest
Contents of $PWD/docker/organice/.env
:
ORGANICE_WEBDAV_URL=https://my.webdav.com
And the same also happens if I build the container from a Dockerfile setting the environment variable:
FROM twohundredok/organice:latest
ENV ORGANICE_WEBDAV_URL=https://my.webdav.com
Hoping there's something simple I'm missing, seems like there typically is.
Thank you!