zorn-v / nextcloud-social-login

GNU Affero General Public License v3.0
199 stars 138 forks source link

Added CLI Configuration Example #243

Closed sluetze closed 3 years ago

sluetze commented 3 years ago

fixes #199

zorn-v commented 3 years ago

docker exec -t -u33 $containername

-u33 - is www-data user ONLY FOR debian based images. In alpine it is uid=82(www-data), so correctly will be -uwww-data. Also there is no bash preinstalled in alpine images, so docker exec -it -uwww-data $containername sh will be more correct

zorn-v commented 3 years ago

Thanks