diff --git a/ocis/docker/Dockerfile.linux.amd64 b/ocis/docker/Dockerfile.linux.amd64 index 8d145ff87..8e35ade66 100644 --- a/ocis/docker/Dockerfile.linux.amd64 +++ b/ocis/docker/Dockerfile.linux.amd64 @@ -30,7 +30,8 @@ RUN mkdir -p /var/tmp/ocis && \ # default artifact location for autogenerated certificates # needs to be a static location because of the docker uid switch mechanism -ENV GLAUTH_LDAPS_CERT=/var/tmp/ocis/.config/ldap/ldaps.crt \ +ENV STORAGE_LDAP_CACERT=/var/tmp/ocis/.config/ldap/ldaps.crt \ + GLAUTH_LDAPS_CERT=/var/tmp/ocis/.config/ldap/ldaps.crt \ GLAUTH_LDAPS_KEY=/var/tmp/ocis/.config/ldap/ldaps.key \ IDP_TRANSPORT_TLS_CERT=/var/tmp/ocis/.config/idp/server.crt \ IDP_TRANSPORT_TLS_KEY=/var/tmp/ocis/.config/idp/server.key \ diff --git a/ocis/docker/Dockerfile.linux.arm b/ocis/docker/Dockerfile.linux.arm index a0408d340..f873b4795 100644 --- a/ocis/docker/Dockerfile.linux.arm +++ b/ocis/docker/Dockerfile.linux.arm @@ -30,7 +30,8 @@ RUN mkdir -p /var/tmp/ocis && \ # default artifact location for autogenerated certificates # needs to be a static location because of the docker uid switch mechanism -ENV GLAUTH_LDAPS_CERT=/var/tmp/ocis/.config/ldap/ldaps.crt \ +ENV STORAGE_LDAP_CACERT=/var/tmp/ocis/.config/ldap/ldaps.crt \ + GLAUTH_LDAPS_CERT=/var/tmp/ocis/.config/ldap/ldaps.crt \ GLAUTH_LDAPS_KEY=/var/tmp/ocis/.config/ldap/ldaps.key \ IDP_TRANSPORT_TLS_CERT=/var/tmp/ocis/.config/idp/server.crt \ IDP_TRANSPORT_TLS_KEY=/var/tmp/ocis/.config/idp/server.key \ diff --git a/ocis/docker/Dockerfile.linux.arm64 b/ocis/docker/Dockerfile.linux.arm64 index b8c9e8292..23d633206 100644 --- a/ocis/docker/Dockerfile.linux.arm64 +++ b/ocis/docker/Dockerfile.linux.arm64 @@ -30,7 +30,8 @@ RUN mkdir -p /var/tmp/ocis && \ # default artifact location for autogenerated certificates # needs to be a static location because of the docker uid switch mechanism -ENV GLAUTH_LDAPS_CERT=/var/tmp/ocis/.config/ldap/ldaps.crt \ +ENV STORAGE_LDAP_CACERT=/var/tmp/ocis/.config/ldap/ldaps.crt \ + GLAUTH_LDAPS_CERT=/var/tmp/ocis/.config/ldap/ldaps.crt \ GLAUTH_LDAPS_KEY=/var/tmp/ocis/.config/ldap/ldaps.key \ IDP_TRANSPORT_TLS_CERT=/var/tmp/ocis/.config/idp/server.crt \ IDP_TRANSPORT_TLS_KEY=/var/tmp/ocis/.config/idp/server.key \