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
Thank you for putting together the credential helper. It works fine on my ubuntu workstation.
I wanted to use docker-compose to access images with login.
Inside docker-compose docker tries to download the configured images. It tries to use the credential-service but that fails, because credential-service is not installed inside docker-compose.
I tried to install docker-credential-service inside of docker-compose and it resulted in the errors below. But maybe that was a wrong path. Inside docker-compose we do not have access to the passwords that are needed for docker-credential-service to work.
Maybe we need another solution to this.
I really do not feel well with my docker password just base64 encoded laying on my machine.
Greetings,
Jörg Pfründer
I have put together this Dockerfile:
FROM docker/compose:1.23.0
RUN apk add libsecret
COPY docker-credential-secretservice /opt/docker-credential-secretservice
ENV PATH="/opt:${PATH}"
RUN docker-credential-secretservice
It always says:
docker-credential-secretservice: error while loading shared libraries: libsecret-1.so.0: cannot open shared object file: No such file or directory
I wanted to debug the image a bit . docker/compose has added an entrypoint so I have put put together the mother image (as far as I have understood):
When I docker run -i -t then I can see that there is libsecret-1.so.0 in /usr/lib .
But docker-credential-secretservice still says it can not find it.
The text was updated successfully, but these errors were encountered:
joerg-pfruender
changed the title
inside docker-compose: error while loading shared libraries: libsecret-1.so.0
docker-credential-helpers support for docker-compose
Nov 6, 2018
Thank you for putting together the credential helper. It works fine on my ubuntu workstation.
I wanted to use docker-compose to access images with login.
Inside docker-compose docker tries to download the configured images. It tries to use the credential-service but that fails, because credential-service is not installed inside docker-compose.
I tried to install docker-credential-service inside of docker-compose and it resulted in the errors below. But maybe that was a wrong path. Inside docker-compose we do not have access to the passwords that are needed for docker-credential-service to work.
Maybe we need another solution to this.
I really do not feel well with my docker password just base64 encoded laying on my machine.
Greetings,
Jörg Pfründer
I have put together this Dockerfile:
It always says:
docker-credential-secretservice: error while loading shared libraries: libsecret-1.so.0: cannot open shared object file: No such file or directory
I wanted to debug the image a bit . docker/compose has added an entrypoint so I have put put together the mother image (as far as I have understood):
When I
docker run -i -t
then I can see that there is libsecret-1.so.0 in /usr/lib .But docker-credential-secretservice still says it can not find it.
The text was updated successfully, but these errors were encountered: