Protect what matters – even after you're gone. Make a plan for your digital legacy today.
Forum Discussion
Former Member
4 years agoI have a problem deploying 1password with docker on Ubuntu
I am trying to deploy 1password on a linux box using docker.
My compose file looks as follows:
version: "3.4"
services:
op-connect-api:
image: 1password/connect-api:latest
ports: ...
Former Member
4 years agoI discovered that the issue was permissions on my 1password-credentials.json. I ran a chmod a+r 1password-credentials.json so that the json file can be read by the server. Because the user did not have read/write permissions it could not access the file so as to login to 1password servers. Thanks.