Ah hah, that was it! SECRET_KEY
was being set, but to handle some permission issues I was starting the initial container command as root, running chown
, then sudoing to a lower user for everything else, but sudo wasn’t passing through the environment variable. adding -E
(and -H
to make it not pass through $HOME
) seems to have fixed it. Thanks!