26 lines
660 B
Bash
26 lines
660 B
Bash
export ENTRYPOINT_VERSION=v4
|
|
|
|
set_settings(){
|
|
mongosh wekan --eval '
|
|
db.settings.updateOne(
|
|
{},
|
|
{
|
|
$set: {
|
|
"disableForgotPassword": true,
|
|
"displayAuthenticationMethod" : false,
|
|
"disableRegistration" : true,
|
|
"customTopLeftCornerLogoImageUrl": "'$LOGO_IMG_URL'",
|
|
"customTopLeftCornerLogoLinkUrl": "'$LOGO_LINK_URL'",
|
|
}
|
|
}
|
|
)'
|
|
}
|
|
|
|
show_mongo_version (){
|
|
mongosh --eval 'db.adminCommand( { getParameter: 1, featureCompatibilityVersion: 1 } )'
|
|
}
|
|
|
|
update_mongo_version (){
|
|
mongosh --eval 'db.adminCommand( { setFeatureCompatibilityVersion: "5.0" } )'
|
|
}
|