https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41774 David Cook <dcook@prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook@prosentient.com.au Status|Needs Signoff |Failed QA --- Comment #2 from David Cook <dcook@prosentient.com.au> --- I'm going to have to disagree with you on this one. From a security standpoint, you don't want to put sensitive data like an encryption key in an environmental variable. You'd want to put the encryption key in a file and then the environmental variable could point to the location of that file. With a containerized environment like Docker, you can either do a bind mount yourself, or you can use secrets which does some of that for you: https://docs.docker.com/compose/how-tos/use-secrets/ -- You are receiving this mail because: You are watching all bug changes.