You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!
The text was updated successfully, but these errors were encountered:
Looking at the compiled javascript inside the "official" docker container I'm running ((docker.io/twohundredok/organice:latest), it looks like this code doesn't actually pull the value from the environment variable process, but somehow places the variable name in literally
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:
Hoping there's something simple I'm missing, seems like there typically is.
Thank you!
The text was updated successfully, but these errors were encountered: