Hi Corin,
you have the set the password in the docker image layer path in the file settings.json under /var/lib/docker/overlay2/{LAYER_ID}/merged/opt/etherpad-lite/settings.json.
“users”: {
“admin”: {
// 1) “password” can be replaced with “hash” if you install ep_hash_auth
// 2) please note that if password is null, the user will not be created
“password”: “changeme1”,
“is_admin”: true
},
“user”: {
// 1) “password” can be replaced with “hash” if you install ep_hash_auth
// 2) please note that if password is null, the user will not be created
“password”: “${USER_PASSWORD:null}”,
“is_admin”: false
}
},
After that, restart the container with docker restart CONTAINER_ID
Now you have access to the etherpad-lite admin panel.
Regards