Comment on [Help] Backing up Nextcloud with Duplicati (Docker)
redcalcium@lemmy.institute 1 year agoIIRC nextcloud docker image uses UID 33 instead of 1000.
Comment on [Help] Backing up Nextcloud with Duplicati (Docker)
redcalcium@lemmy.institute 1 year agoIIRC nextcloud docker image uses UID 33 instead of 1000.
__init__@programming.dev 1 year ago
I just went through dockerizing my nextcloud installation. The www-data user on my host had uid 33, but the one inside the container uses uid 82, which had me scratching my head for a minute. You can confirm the actual uid by running
id www-data
inside the nextcloud container.redcalcium@lemmy.institute 1 year ago
I have two instances on two separate servers running and all of them use uid:gid 33:33 inside the container. I use the
nextcloud:26-apache
docker image.__init__@programming.dev 1 year ago
Ah yep I bet that’s it, I’m using the alpine fpm image.