Docker container won’t work, keep asking for the identity.cert

Hi,
So I got my server, did an export from zfs for all my data, import new server
seems okay,
can read the files
but docker container won’t work, keep asking for the identity.cert. Seems like an permission issue for the zfs volume but don’t seem to get it fix. anyone who can help?

Maybe start a new thread about this

If you use --user $(id -u):$(id -g) in your docker run command, then you need to change permissions to your current user.

sudo chown $(id -u) -R /mnt/storj/storagenode
chmod u+rwx -R /mnt/storj/storagenode

You need to do the same for your identity location, if it’s not matched the data location (it’s highly recommended to keep the identity in the data location to do not confuse with another one and/or do not lose it).

Sorry, reinstalled ubuntu. Worked like a charm…