The default user and password are configured in the dockerfile as hardcoded entries.
==> https://github.com/olbat/dockerfiles/blob/master/cupsd/Dockerfile#L53
It is possible the change the password through the standard "passwd" utility as indicated in #64
However, this password change is undone, and the password is reset to the default, whenever the docker container is recreated.
Is it possible to have the password set from an environment variable? (Ex: Through a Docker compose file.)
This way, a strong password can be enforced which is retained when the container is recreated.
If no password is configured, the current default can still be used.