mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-12 11:14:57 +02:00
21 lines
570 B
Plaintext
21 lines
570 B
Plaintext
# Example userdb.txt
|
|
# This file may be copied to etc/userdb.txt.
|
|
# If etc/userdb.txt is not present, built-in defaults will be used.
|
|
#
|
|
# ':' separated fields, file is processed line for line
|
|
# processing will stop on first match
|
|
#
|
|
# Field #1 contains the username
|
|
# Field #2 is currently unused
|
|
# Field #3 contains the password
|
|
# '*' for password allows any password
|
|
# '!' at the start of a password will not grant this password access
|
|
# '/' can be used to write a regular expression
|
|
#
|
|
root:x:!root
|
|
root:x:!123456
|
|
root:x:!/honeypot/i
|
|
root:x:*
|
|
tomcat:x:*
|
|
oracle:x:*
|