Docker and AUTH=false doesn't work #4
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
sciactive/nephele#4
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I tried all variances of using
AUTH=false, bydocker-compose.yaml, inline docker run command, S3 storage, normal storage,... but it does not seems to work.Setting
AUTH_USERNAMEor using.htpasswddoes work normally.I figured it out. It is reading the env var, but
commandersets the option to true if there is no--no-authargument. Arguments take precedence over env vars, so commander's prop ends up being the value. I need to figure out how to detect that there wasn't an argument, and commander is just setting the default.This actually affects all boolean env vars that default to true (AUTH, NYMPH_REGISTRATION, and UPDATE_CHECK).
This fix has been pushed up to Docker now.