Skip to content

Commit

Permalink
Hotfix 9.0.1 (#119)
Browse files Browse the repository at this point in the history
hotfix: use specific minor version of authelia 4.35 in installer
  • Loading branch information
yscialom authored May 19, 2024
1 parent 200bcbf commit 7c65616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/ansible_passwords.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def key(self, opt=''):
return self.__transform(key, opt)

def password(self, cleartext):
command = ['docker', 'run', '--rm', 'authelia/authelia:4', 'authelia', 'hash-password', '--', cleartext]
command = ['docker', 'run', '--rm', 'authelia/authelia:4.35', 'authelia', 'hash-password', '--', cleartext]
stdout = self.__run(command)
return self.__extract_ciphertext(command, stdout)

Expand Down

0 comments on commit 7c65616

Please sign in to comment.