Implement fixes from test results

- Update Docker install to use curl method
- Rename ADMIN_PASSWORD to AUTHELIA_ADMIN_PASSWORD
- Fix Authelia password hash generation (remove grep, no quotes)
- Revert compose labels to single quotes
- Ensure users_database.yml has unquoted password placeholder
This commit is contained in:
Kelin
2026-02-02 20:59:07 -05:00
parent 7e4799f27e
commit 3d5979b5f1
19 changed files with 1232 additions and 467 deletions

View File

@@ -139,7 +139,7 @@ system_setup() {
log_info "Docker service is already running"
fi
else
curl -fsSL https://get.docker.com | sh
curl -fsSL https://get.docker.com -o get-docker.sh && sudo sh get-docker.sh
usermod -aG docker "$ACTUAL_USER"
NEEDS_LOGOUT=true
fi