A free, open, self-hosted app platform (GNU AGPLv3): one-click app deploys, Traefik reverse proxy with automatic SSL, rootless Docker support, gluetun VPN routing, and a web dashboard to manage it all. Free & open forever to self-host; optional paid hosted services fund it. See PROMISE.md. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
256 lines
8.9 KiB
Bash
Executable File
256 lines
8.9 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Category : Communication & Collaboration Tools
|
|
# Description : Mattermost - Team Communication (c/u/s/r/i/t):
|
|
|
|
installMattermost()
|
|
{
|
|
local config_variables="$1"
|
|
|
|
if [[ "$mattermost" == *[cCtTuUsSrRiI]* ]]; then
|
|
local DCN=docker-compose.nginx.yml
|
|
local DCWN=docker-compose.without-nginx.yml
|
|
dockerConfigSetupToContainer silent mattermost;
|
|
local app_name=$CFG_MATTERMOST_APP_NAME
|
|
local easy_setup=$CFG_MATTERMOST_EASY_SETUP
|
|
initializeAppVariables $app_name;
|
|
fi
|
|
|
|
if [[ "$mattermost" == *[cC]* ]]; then
|
|
editAppConfig $app_name;
|
|
fi
|
|
|
|
if [[ "$mattermost" == *[tT]* ]]; then
|
|
mattermostToolsMenu;
|
|
fi
|
|
|
|
if [[ "$mattermost" == *[uU]* ]]; then
|
|
dockerUninstallApp $app_name;
|
|
fi
|
|
|
|
if [[ "$mattermost" == *[sS]* ]]; then
|
|
dockerComposeDown $app_name;
|
|
fi
|
|
|
|
if [[ "$mattermost" == *[rR]* ]]; then
|
|
status=$(dockerCheckAppInstalled "traefik" "docker")
|
|
if [ "$status" == "installed" ]; then
|
|
dockerComposeDown "$app_name" "$DCN";
|
|
dockerComposeDown "$app_name" "$DCWN";
|
|
dockerComposeUp "$app_name" "$DCWN";
|
|
fi
|
|
|
|
if [ "$status" == "not_installed" ]; then
|
|
while true; do
|
|
isNotice "No Reverse Proxy has been found"
|
|
isNotice "Traefik is RECOMMENDED to use before installing Mattermost"
|
|
echo ""
|
|
isQuestion "Are you using the Reverse Proxy that comes with Mattermost? (y/n): "
|
|
read -rp "" acceptproxymattermost
|
|
if [[ "$acceptproxymattermost" =~ ^[yYnN]$ ]]; then
|
|
break
|
|
fi
|
|
isNotice "Please provide a valid input (y/n)."
|
|
done
|
|
if [[ "$MATN" == [nN] ]]; then
|
|
dockerComposeDown "$app_name" "$DCWN";
|
|
dockerComposeDown "$app_name" "$DCN";
|
|
dockerComposeUp "$app_name" "$DCN";
|
|
fi
|
|
if [[ "$MATN" == [yY] ]]; then
|
|
dockerComposeDown "$app_name" "$DCN";
|
|
dockerComposeDown "$app_name" "$DCWN";
|
|
dockerComposeUp "$app_name" "$DCWN";
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
if [[ "$mattermost" == *[iI]* ]]; then
|
|
echo ""
|
|
echo "##########################################"
|
|
echo "### Install $app_name"
|
|
echo "##########################################"
|
|
echo ""
|
|
|
|
((menu_number++))
|
|
echo ""
|
|
echo "---- $menu_number. Setting up install folder and config file for $app_name."
|
|
echo ""
|
|
|
|
dockerConfigSetupToContainer "loud" "$app_name" "install" "$config_variables";
|
|
isSuccessful "Install folders and Config files have been setup for $app_name."
|
|
|
|
((menu_number++))
|
|
echo ""
|
|
|
|
|
|
((menu_number++))
|
|
echo ""
|
|
echo "---- $menu_number. Pulling Mattermost GitHub repo"
|
|
echo ""
|
|
|
|
backupContainerFilesToTemp $app_name;
|
|
local result=$(sudo rm -rf $containers_dir$app_name)
|
|
checkSuccess "Removing $app_name install folder"
|
|
|
|
local result=$(sudo -u $docker_install_user git clone https://github.com/mattermost/docker $containers_dir$app_name)
|
|
checkSuccess "Cloning Mattermost GitHub"
|
|
backupContainerFilesRestore $app_name;
|
|
|
|
local result=$(copyFile "loud" $containers_dir$app_name/env.example $containers_dir$app_name/.env $docker_install_user)
|
|
checkSuccess "Copying example .env file for setup"
|
|
|
|
local result=$(createFolders "loud" $docker_install_user $containers_dir$app_name/volumes/app/mattermost/{config,data,logs,plugins,client/plugins,bleve-indexes})
|
|
checkSuccess "Creating folders needed for $app_name"
|
|
if [[ $CFG_DOCKER_INSTALL_TYPE == "rootless" ]]; then
|
|
#local docker_rootless_user_id=$(id -u "$sudo_user_name")
|
|
#local result=$(sudo chown -R $docker_rootless_user_id:$docker_rootless_user_id $containers_dir$app_name/volumes/app/mattermost)
|
|
#checkSuccess "Setting folder permissions for $app_name folders"
|
|
# Issue with Rootless - https://github.com/mattermost/docker/issues/106
|
|
local result=$(sudo chmod -R 777 /docker/containers/mattermost/volumes/app/mattermost/)
|
|
checkSuccess "Setting folder permissions for $app_name folders"
|
|
else
|
|
local result=$(sudo chown -R 2000:2000 $containers_dir$app_name/volumes/app/mattermost)
|
|
checkSuccess "Setting folder permissions for $app_name folders"
|
|
fi
|
|
|
|
local result=$(sudo sed -i "s/DOMAIN=mm.example.com/DOMAIN=$host_setup/g" $containers_dir$app_name/.env)
|
|
checkSuccess "Updating .env file with Domain $host_setup"
|
|
|
|
local result=$(sudo sed -i 's/HTTP_PORT=80/HTTP_PORT='$usedport1'/' $containers_dir$app_name/.env)
|
|
checkSuccess "Updating .env file HTTP_PORT to $usedport1"
|
|
|
|
local result=$(sudo sed -i 's/HTTPS_PORT=443/HTTPS_PORT='$usedport2'/' $containers_dir$app_name/.env)
|
|
checkSuccess "Updating .env file HTTPS_PORT to $usedport2"
|
|
|
|
configSetupFileWithData $app_name ".env";
|
|
|
|
((menu_number++))
|
|
echo ""
|
|
echo "---- $menu_number. Updating file permissions before starting."
|
|
echo ""
|
|
|
|
fixPermissionsBeforeStart $app_name;
|
|
|
|
((menu_number++))
|
|
echo ""
|
|
echo "---- $menu_number. Running the docker-compose.yml to install and start Mattermost"
|
|
echo ""
|
|
|
|
mattermostAddToYMLFile()
|
|
{
|
|
local file_path="$1"
|
|
sudo tee -a "$file_path" <<EOF
|
|
container_name: mattermost
|
|
#labels:
|
|
#traefik.enable: true
|
|
#traefik.http.routers.mattermost.entrypoints: web,websecure
|
|
#traefik.http.routers.mattermost.rule: Host(\`DOMAINSUBNAMEHERE\`)
|
|
#traefik.http.routers.mattermost.tls: true
|
|
#traefik.http.routers.mattermost.tls.certresolver: production
|
|
#traefik.http.routers.mattermost.middlewares:
|
|
healthcheck:
|
|
disable: false #HEALTHCHECKHERE
|
|
networks:
|
|
vpn:
|
|
ipv4_address: IPADDRESSHERE
|
|
|
|
postgres:
|
|
networks:
|
|
vpn:
|
|
ipv4_address: 10.100.0.105
|
|
|
|
networks:
|
|
vpn:
|
|
external: true
|
|
EOF
|
|
}
|
|
|
|
status=$(dockerCheckAppInstalled "traefik" "docker")
|
|
if [ "$status" == "installed" ]; then
|
|
if [[ "$OS_TYPE" == "Ubuntu" || "$OS_TYPE" == "Debian" ]]; then
|
|
if sudo grep -q "vpn:" $containers_dir$app_name/$DCWN; then
|
|
isError "The Compose file already contains custom edits. Please reinstalled $app_name"
|
|
else
|
|
removeEmptyLineAtFileEnd "$containers_dir$app_name/$DCWN";
|
|
mattermostAddToYMLFile "$containers_dir$app_name/$DCWN";
|
|
configSetupFileWithData "$app_name" "$DCWN";
|
|
dockerComposeDown "$app_name" "$DCWN";
|
|
dockerComposeUp "$app_name" "$DCWN";
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
if [ "$status" == "not_installed" ]; then
|
|
isNotice "No Reverse Proxy has been found"
|
|
isNotice "Traefik is RECOMMENDED to use before installing Mattermost"
|
|
echo ""
|
|
isQuestion "Do you want to install the Reverse Proxy that comes with Mattermost? (y/n): "
|
|
read -rp "" MATN
|
|
|
|
if [[ "$MATN" == [nN] ]]; then
|
|
dockerComposeDown "$app_name" "$DCWN";
|
|
dockerComposeDown "$app_name" "$DCN";
|
|
dockerComposeUp "$app_name" "$DCN";
|
|
fi
|
|
|
|
if [[ "$MATN" == [yY] ]]; then
|
|
if [[ "$OS_TYPE" == "Ubuntu" || "$OS_TYPE" == "Debian" ]]; then
|
|
if sudo grep -q "vpn:" $containers_dir$app_name/$DCWN; then
|
|
isError "The Compose file already contains custom edits. Please reinstalled $app_name"
|
|
else
|
|
removeEmptyLineAtFileEnd "$containers_dir$app_name/$DCWN";
|
|
mattermostAddToYMLFile "$containers_dir$app_name/$DCWN";
|
|
configSetupFileWithData "$app_name" "$DCWN";
|
|
dockerComposeDown "$app_name" "$DCWN";
|
|
dockerComposeUp "$app_name" "$DCWN";
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
((menu_number++))
|
|
echo ""
|
|
echo "---- $menu_number. Running Application specific updates (if required)"
|
|
echo ""
|
|
|
|
appUpdateSpecifics $app_name;
|
|
|
|
((menu_number++))
|
|
echo ""
|
|
echo "---- $menu_number. Running Headscale setup (if required)"
|
|
echo ""
|
|
|
|
setupHeadscale $app_name;
|
|
|
|
((menu_number++))
|
|
echo ""
|
|
echo "---- $menu_number. Adding $app_name to the Apps Database table."
|
|
echo ""
|
|
|
|
databaseInstallApp $app_name;
|
|
|
|
((menu_number++))
|
|
echo ""
|
|
echo "---- $menu_number. Updating WebUI config file."
|
|
echo ""
|
|
|
|
webuiContainerSetup $app_name install;
|
|
|
|
((menu_number++))
|
|
echo ""
|
|
echo "---- $menu_number. You can find $app_name files at $containers_dir$app_name"
|
|
echo ""
|
|
echo " You can now navigate to your new service using one of the options below : "
|
|
echo ""
|
|
|
|
menuShowFinalMessages $app_name;
|
|
|
|
menu_number=0
|
|
#sleep 3s
|
|
cd
|
|
fi
|
|
|
|
mattermost=n
|
|
}
|