Signing back into the Community for the first time? You'll need to reset your password to access your account. Find out more.
Forum Discussion
Former Member
4 years agoDocker (compose) Permission denied
I'm having trouble getting Connect up and running with Docker Compose. I believe my problems is somewhere related to a user and/or its rights. I am running Docker on my Synology NAS where I created a...
Former Member
4 years agoIt seems like something is going wrong now with determining the home directory. Connect says it is looking in /.op/data/1password.sqlite
instead of /home/opuser/.op/data/1password.sqlite
.
What we can give a try, is manually specifying the correct location by setting XDG_DATA_HOME
to /home/opuser/
. You can do that by adding the following line to the specification of both containers (just above volumes:
):
environment:
XDG_DATA_HOME: "/home/opuser/"
PS. you can use inline codeblocks by wrapping the code in a single tilde, so:
`docker-compose down -v`