mirror of
				https://github.com/community-scripts/ProxmoxVE.git
				synced 2025-11-04 02:12:49 +00:00 
			
		
		
		
	Compare commits
	
		
			19 Commits
		
	
	
		
			2025-10-29
			...
			tremor021-
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					86b1cfd5af | ||
| 
						 | 
					b20854d299 | ||
| 
						 | 
					ac2141b9e9 | ||
| 
						 | 
					5a92816946 | ||
| 
						 | 
					2d9d62118f | ||
| 
						 | 
					6fcae07454 | ||
| 
						 | 
					106e2efc2a | ||
| 
						 | 
					5b4f67f94f | ||
| 
						 | 
					d54b3a0bdb | ||
| 
						 | 
					490f65eac8 | ||
| 
						 | 
					44ccf3e886 | ||
| 
						 | 
					c6f08d09c4 | ||
| 
						 | 
					851f0dc37c | ||
| 
						 | 
					da6cff182c | ||
| 
						 | 
					c8c23ca1cb | ||
| 
						 | 
					f7ec037a38 | ||
| 
						 | 
					8896e6c964 | ||
| 
						 | 
					7c583c7aa0 | ||
| 
						 | 
					6e3aeab72f | 
							
								
								
									
										24
									
								
								CHANGELOG.md
									
									
									
									
									
								
							
							
						
						
									
										24
									
								
								CHANGELOG.md
									
									
									
									
									
								
							@@ -12,6 +12,30 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
 | 
			
		||||
 | 
			
		||||
## 2025-10-30
 | 
			
		||||
 | 
			
		||||
### 🆕 New Scripts
 | 
			
		||||
 | 
			
		||||
  - Livebook ([#8739](https://github.com/community-scripts/ProxmoxVE/pull/8739))
 | 
			
		||||
- Reitti ([#8736](https://github.com/community-scripts/ProxmoxVE/pull/8736))
 | 
			
		||||
- BentoPDF ([#8735](https://github.com/community-scripts/ProxmoxVE/pull/8735))
 | 
			
		||||
 | 
			
		||||
### 🚀 Updated Scripts
 | 
			
		||||
 | 
			
		||||
  - #### 🐞 Bug Fixes
 | 
			
		||||
 | 
			
		||||
    - Add explicit exit calls to update_script functions [@MickLesk](https://github.com/MickLesk) ([#8752](https://github.com/community-scripts/ProxmoxVE/pull/8752))
 | 
			
		||||
    - kimai: Set global SQL mode to empty in install script [@MickLesk](https://github.com/MickLesk) ([#8747](https://github.com/community-scripts/ProxmoxVE/pull/8747))
 | 
			
		||||
 | 
			
		||||
  - #### ✨ New Features
 | 
			
		||||
 | 
			
		||||
    - core: add function cleanup_lxc [@MickLesk](https://github.com/MickLesk) ([#8749](https://github.com/community-scripts/ProxmoxVE/pull/8749))
 | 
			
		||||
    - Asterisk: add interactive version selection to installer [@MickLesk](https://github.com/MickLesk) ([#8726](https://github.com/community-scripts/ProxmoxVE/pull/8726))
 | 
			
		||||
 | 
			
		||||
### 🌐 Website
 | 
			
		||||
 | 
			
		||||
  - #### 📝 Script Information
 | 
			
		||||
 | 
			
		||||
    - Cronicle: Update default credentials [@tremor021](https://github.com/tremor021) ([#8720](https://github.com/community-scripts/ProxmoxVE/pull/8720))
 | 
			
		||||
 | 
			
		||||
## 2025-10-29
 | 
			
		||||
 | 
			
		||||
### 🚀 Updated Scripts
 | 
			
		||||
 
 | 
			
		||||
@@ -32,7 +32,6 @@ function update_script() {
 | 
			
		||||
  msg_info "Restarting AdGuard Home"
 | 
			
		||||
  $STD rc-service adguardhome restart
 | 
			
		||||
  msg_ok "Restarted AdGuard Home"
 | 
			
		||||
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -75,7 +75,6 @@ function update_script() {
 | 
			
		||||
  else
 | 
			
		||||
    msg_ok "No update required. ${APP} is already at ${RELEASE}"
 | 
			
		||||
  fi
 | 
			
		||||
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -32,7 +32,7 @@ function update_script() {
 | 
			
		||||
  msg_info "Restarting Caddy"
 | 
			
		||||
  rc-service caddy restart
 | 
			
		||||
  msg_ok "Restarted Caddy"
 | 
			
		||||
  exit
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
@@ -41,6 +41,7 @@ function update_script() {
 | 
			
		||||
      ;;
 | 
			
		||||
    esac
 | 
			
		||||
  done
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
@@ -31,7 +31,6 @@ function update_script() {
 | 
			
		||||
  msg_info "Restarting Forgejo"
 | 
			
		||||
  $STD rc-service forgejo restart
 | 
			
		||||
  msg_ok "Restarted Forgejo"
 | 
			
		||||
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -50,7 +50,7 @@ function update_script() {
 | 
			
		||||
  else
 | 
			
		||||
    msg_ok "No update required. Garage is already at ${GITEA_RELEASE}"
 | 
			
		||||
  fi
 | 
			
		||||
  exit
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
@@ -48,7 +48,6 @@ function update_script() {
 | 
			
		||||
  else
 | 
			
		||||
    msg_ok "No update required. ${APP} is already at ${RELEASE}"
 | 
			
		||||
  fi
 | 
			
		||||
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -32,7 +32,7 @@ function update_script() {
 | 
			
		||||
  msg_info "Restarting Gitea"
 | 
			
		||||
  rc-service gitea restart
 | 
			
		||||
  msg_ok "Restarted Gitea"
 | 
			
		||||
  exit
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
@@ -54,6 +54,7 @@ function update_script() {
 | 
			
		||||
      ;;
 | 
			
		||||
    esac
 | 
			
		||||
  done
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
@@ -41,7 +41,6 @@ function update_script() {
 | 
			
		||||
  else
 | 
			
		||||
    msg_ok "No update required. ${APP} is already at ${RELEASE}"
 | 
			
		||||
  fi
 | 
			
		||||
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -55,7 +55,7 @@ function update_script() {
 | 
			
		||||
  $STD docker compose -p komodo -f "$COMPOSE_FILE" --env-file /opt/komodo/compose.env pull
 | 
			
		||||
  $STD docker compose -p komodo -f "$COMPOSE_FILE" --env-file /opt/komodo/compose.env up -d
 | 
			
		||||
  msg_ok "Updated ${APP}"
 | 
			
		||||
  exit
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
@@ -31,7 +31,6 @@ function update_script() {
 | 
			
		||||
  msg_info "Restarting MariaDB"
 | 
			
		||||
  $STD rc-service mariadb restart
 | 
			
		||||
  msg_ok "Restarted MariaDB"
 | 
			
		||||
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -50,6 +50,7 @@ function update_script() {
 | 
			
		||||
      ;;
 | 
			
		||||
    esac
 | 
			
		||||
  done
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
@@ -31,7 +31,6 @@ function update_script() {
 | 
			
		||||
  msg_info "Updating Node-RED"
 | 
			
		||||
  $STD npm install -g --unsafe-perm node-red
 | 
			
		||||
  msg_ok "Updated Node-RED"
 | 
			
		||||
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -31,7 +31,6 @@ function update_script() {
 | 
			
		||||
  msg_info "Restarting PostgreSQL"
 | 
			
		||||
  $STD rc-service postgresql restart
 | 
			
		||||
  msg_ok "Restarted PostgreSQL"
 | 
			
		||||
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -31,7 +31,6 @@ function update_script() {
 | 
			
		||||
  msg_info "Restarting Prometheus"
 | 
			
		||||
  $STD rc-service prometheus restart
 | 
			
		||||
  msg_ok "Restarted Prometheus"
 | 
			
		||||
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -38,7 +38,6 @@ function update_script() {
 | 
			
		||||
  else
 | 
			
		||||
    msg_ok "No update required. ${APP} is already at ${RELEASE}"
 | 
			
		||||
  fi
 | 
			
		||||
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -41,9 +41,8 @@ function update_script() {
 | 
			
		||||
  msg_info "Starting Service"
 | 
			
		||||
  $STD rc-service redlib start
 | 
			
		||||
  msg_ok "Started Service"
 | 
			
		||||
 | 
			
		||||
  msg_ok "Update Successful"
 | 
			
		||||
  exit
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
@@ -31,8 +31,7 @@ function update_script() {
 | 
			
		||||
  msg_info "Restarting Syncthing"
 | 
			
		||||
  $STD rc-service syncthing restart
 | 
			
		||||
  msg_ok "Restarted Syncthing"
 | 
			
		||||
 | 
			
		||||
  exit 1
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
@@ -44,7 +44,6 @@ function update_script() {
 | 
			
		||||
  else
 | 
			
		||||
    msg_ok "No update required. ${APP} is already at ${RELEASE}"
 | 
			
		||||
  fi
 | 
			
		||||
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -28,7 +28,7 @@ function update_script() {
 | 
			
		||||
  msg_info "Upgrading traefik from edge"
 | 
			
		||||
  $STD apk add traefik --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community
 | 
			
		||||
  msg_ok "Upgraded traefik"
 | 
			
		||||
  exit
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
@@ -31,8 +31,7 @@ function update_script() {
 | 
			
		||||
  msg_info "Restarting Transmission"
 | 
			
		||||
  $STD rc-service transmission-daemon restart
 | 
			
		||||
  msg_ok "Restarted Transmission"
 | 
			
		||||
 | 
			
		||||
  exit 1
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
@@ -36,7 +36,6 @@ function update_script() {
 | 
			
		||||
    $STD ./wgd.sh start
 | 
			
		||||
    msg_ok "WGDashboard updated"
 | 
			
		||||
  fi
 | 
			
		||||
 | 
			
		||||
  exit 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										62
									
								
								ct/bentopdf.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										62
									
								
								ct/bentopdf.sh
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,62 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
 | 
			
		||||
# Copyright (c) 2021-2025 community-scripts ORG
 | 
			
		||||
# Author: vhsdream
 | 
			
		||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
 | 
			
		||||
# Source: https://github.com/alam00000/bentopdf
 | 
			
		||||
 | 
			
		||||
APP="BentoPDF"
 | 
			
		||||
var_tags="${var_tags:-pdf-editor}"
 | 
			
		||||
var_cpu="${var_cpu:-1}"
 | 
			
		||||
var_ram="${var_ram:-2048}"
 | 
			
		||||
var_disk="${var_disk:-4}"
 | 
			
		||||
var_os="${var_os:-debian}"
 | 
			
		||||
var_version="${var_version:-13}"
 | 
			
		||||
var_unprivileged="${var_unprivileged:-1}"
 | 
			
		||||
 | 
			
		||||
header_info "$APP"
 | 
			
		||||
variables
 | 
			
		||||
color
 | 
			
		||||
catch_errors
 | 
			
		||||
 | 
			
		||||
function update_script() {
 | 
			
		||||
  header_info
 | 
			
		||||
  check_container_storage
 | 
			
		||||
  check_container_resources
 | 
			
		||||
  if [[ ! -d /opt/bentopdf ]]; then
 | 
			
		||||
    msg_error "No ${APP} Installation Found!"
 | 
			
		||||
    exit
 | 
			
		||||
  fi
 | 
			
		||||
 | 
			
		||||
  NODE_VERSION="24" setup_nodejs
 | 
			
		||||
 | 
			
		||||
  if check_for_gh_release "bentopdf" "alam00000/bentopdf"; then
 | 
			
		||||
    msg_info "Stopping Service"
 | 
			
		||||
    systemctl stop bentopdf
 | 
			
		||||
    msg_ok "Stopped Service"
 | 
			
		||||
 | 
			
		||||
    CLEAN_INSTALL=1 fetch_and_deploy_gh_release "bentopdf" "alam00000/bentopdf" "tarball" "latest" "/opt/bentopdf"
 | 
			
		||||
 | 
			
		||||
    msg_info "Updating BentoPDF"
 | 
			
		||||
    cd /opt/bentopdf
 | 
			
		||||
    $STD npm ci --no-audit --no-fund
 | 
			
		||||
    export SIMPLE_MODE=true
 | 
			
		||||
    $STD npm run build -- --mode production
 | 
			
		||||
    msg_ok "Updated BentoPDF"
 | 
			
		||||
 | 
			
		||||
    msg_info "Starting Service"
 | 
			
		||||
    systemctl start bentopdf
 | 
			
		||||
    msg_ok "Started Service"
 | 
			
		||||
    msg_ok "Updated Successfully!"
 | 
			
		||||
  fi
 | 
			
		||||
  exit
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
build_container
 | 
			
		||||
description
 | 
			
		||||
 | 
			
		||||
msg_ok "Completed Successfully!\n"
 | 
			
		||||
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
 | 
			
		||||
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
 | 
			
		||||
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}"
 | 
			
		||||
@@ -54,8 +54,9 @@ function update_script() {
 | 
			
		||||
      msg_error "PLEASE MAKE A BACKUP FIRST!"
 | 
			
		||||
      exit
 | 
			
		||||
    fi
 | 
			
		||||
    msg_ok "Updated Successfully"
 | 
			
		||||
    msg_ok "Updated Successfully!"
 | 
			
		||||
  fi
 | 
			
		||||
  exit
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
@@ -28,6 +28,7 @@ function update_script() {
 | 
			
		||||
    exit
 | 
			
		||||
  fi
 | 
			
		||||
  msg_ok "${APP} updates itself automatically!"
 | 
			
		||||
  exit
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
@@ -37,4 +38,4 @@ description
 | 
			
		||||
msg_ok "Completed Successfully!\n"
 | 
			
		||||
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
 | 
			
		||||
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
 | 
			
		||||
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}"
 | 
			
		||||
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}"
 | 
			
		||||
 
 | 
			
		||||
@@ -62,7 +62,6 @@ function update_script() {
 | 
			
		||||
      sed -i "s/localhost:3012/${IP}:3012/g" /opt/cronicle/conf/config.json
 | 
			
		||||
      $STD /opt/cronicle/bin/control.sh start
 | 
			
		||||
      msg_ok "Installed Cronicle Worker"
 | 
			
		||||
 | 
			
		||||
      echo -e "\n Add Masters secret key to /opt/cronicle/conf/config.json \n"
 | 
			
		||||
      exit
 | 
			
		||||
    fi
 | 
			
		||||
 
 | 
			
		||||
@@ -20,23 +20,24 @@ color
 | 
			
		||||
catch_errors
 | 
			
		||||
 | 
			
		||||
function update_script() {
 | 
			
		||||
    header_info
 | 
			
		||||
    check_container_storage
 | 
			
		||||
    check_container_resources
 | 
			
		||||
    if [[ ! -d /opt/freshrss ]]; then
 | 
			
		||||
        msg_error "No ${APP} Installation Found!"
 | 
			
		||||
        exit
 | 
			
		||||
    fi
 | 
			
		||||
  header_info
 | 
			
		||||
  check_container_storage
 | 
			
		||||
  check_container_resources
 | 
			
		||||
  if [[ ! -d /opt/freshrss ]]; then
 | 
			
		||||
    msg_error "No ${APP} Installation Found!"
 | 
			
		||||
    exit
 | 
			
		||||
  fi
 | 
			
		||||
 | 
			
		||||
    if [ ! -x /opt/freshrss/cli/sensitive-log.sh ]; then
 | 
			
		||||
        msg_info "Fixing wrong permissions"
 | 
			
		||||
        chmod +x /opt/freshrss/cli/sensitive-log.sh
 | 
			
		||||
        systemctl restart apache2
 | 
			
		||||
        msg_ok "Fixed wrong permissions"
 | 
			
		||||
    else
 | 
			
		||||
        msg_error "FreshRSS should be updated via the user interface."
 | 
			
		||||
        exit
 | 
			
		||||
    fi
 | 
			
		||||
  if [ ! -x /opt/freshrss/cli/sensitive-log.sh ]; then
 | 
			
		||||
    msg_info "Fixing wrong permissions"
 | 
			
		||||
    chmod +x /opt/freshrss/cli/sensitive-log.sh
 | 
			
		||||
    systemctl restart apache2
 | 
			
		||||
    msg_ok "Fixed wrong permissions"
 | 
			
		||||
    exit
 | 
			
		||||
  else
 | 
			
		||||
    msg_error "FreshRSS should be updated via the user interface."
 | 
			
		||||
    exit
 | 
			
		||||
  fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
@@ -31,6 +31,7 @@ function update_script() {
 | 
			
		||||
  $STD apt update
 | 
			
		||||
  $STD apt -y upgrade
 | 
			
		||||
  msg_ok "Updated $APP LXC"
 | 
			
		||||
  exit
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										6
									
								
								ct/headers/bentopdf
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								ct/headers/bentopdf
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
    ____             __        ____  ____  ______
 | 
			
		||||
   / __ )___  ____  / /_____  / __ \/ __ \/ ____/
 | 
			
		||||
  / __  / _ \/ __ \/ __/ __ \/ /_/ / / / / /_    
 | 
			
		||||
 / /_/ /  __/ / / / /_/ /_/ / ____/ /_/ / __/    
 | 
			
		||||
/_____/\___/_/ /_/\__/\____/_/   /_____/_/       
 | 
			
		||||
                                                 
 | 
			
		||||
							
								
								
									
										6
									
								
								ct/headers/livebook
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								ct/headers/livebook
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
    __    _            __                __  
 | 
			
		||||
   / /   (_)   _____  / /_  ____  ____  / /__
 | 
			
		||||
  / /   / / | / / _ \/ __ \/ __ \/ __ \/ //_/
 | 
			
		||||
 / /___/ /| |/ /  __/ /_/ / /_/ / /_/ / ,<   
 | 
			
		||||
/_____/_/ |___/\___/_.___/\____/\____/_/|_|  
 | 
			
		||||
                                             
 | 
			
		||||
							
								
								
									
										6
									
								
								ct/headers/reitti
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								ct/headers/reitti
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
    ____       _ __  __  _ 
 | 
			
		||||
   / __ \___  (_) /_/ /_(_)
 | 
			
		||||
  / /_/ / _ \/ / __/ __/ / 
 | 
			
		||||
 / _, _/  __/ / /_/ /_/ /  
 | 
			
		||||
/_/ |_|\___/_/\__/\__/_/   
 | 
			
		||||
                           
 | 
			
		||||
							
								
								
									
										64
									
								
								ct/livebook.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										64
									
								
								ct/livebook.sh
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,64 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/refs/heads/main/misc/build.func)
 | 
			
		||||
# Copyright (c) 2021-2025 community-scripts ORG
 | 
			
		||||
# Author: dkuku
 | 
			
		||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
 | 
			
		||||
# Source: https://github.com/livebook-dev/livebook
 | 
			
		||||
 | 
			
		||||
APP="Livebook"
 | 
			
		||||
var_tags="${var_tags:-development}"
 | 
			
		||||
var_disk="${var_disk:-4}"
 | 
			
		||||
var_cpu="${var_cpu:-2}"
 | 
			
		||||
var_ram="${var_ram:-1024}"
 | 
			
		||||
var_os="${var_os:-ubuntu}"
 | 
			
		||||
var_version="${var_version:-24.04}"
 | 
			
		||||
var_unprivileged="${var_unprivileged:-1}"
 | 
			
		||||
 | 
			
		||||
header_info "$APP"
 | 
			
		||||
variables
 | 
			
		||||
color
 | 
			
		||||
catch_errors
 | 
			
		||||
 | 
			
		||||
function update_script() {
 | 
			
		||||
  header_info
 | 
			
		||||
  check_container_storage
 | 
			
		||||
  check_container_resources
 | 
			
		||||
 | 
			
		||||
  if [[ ! -f /opt/livebook/.mix/escripts/livebook ]]; then
 | 
			
		||||
    msg_error "No ${APP} Installation Found!"
 | 
			
		||||
    exit
 | 
			
		||||
  fi
 | 
			
		||||
 | 
			
		||||
  if check_for_gh_release "livebook" "livebook-dev/livebook"; then
 | 
			
		||||
    msg_info "Stopping Service"
 | 
			
		||||
    systemctl stop livebook
 | 
			
		||||
    msg_info "Stopped Service"
 | 
			
		||||
 | 
			
		||||
    msg_info "Updating Container"
 | 
			
		||||
    $STD apt update
 | 
			
		||||
    $STD apt upgrade -y
 | 
			
		||||
    msg_ok "Updated Container"
 | 
			
		||||
 | 
			
		||||
    msg_info "Updating Livebook"
 | 
			
		||||
    source /opt/livebook/.env
 | 
			
		||||
    cd /opt/livebook
 | 
			
		||||
    $STD mix escript.install hex livebook --force
 | 
			
		||||
 | 
			
		||||
    chown -R livebook:livebook /opt/livebook /data
 | 
			
		||||
    
 | 
			
		||||
    msg_info "Starting Service"
 | 
			
		||||
    systemctl start livebook
 | 
			
		||||
    msg_info "Started Service"
 | 
			
		||||
 | 
			
		||||
    msg_ok "Updated Successfully!"
 | 
			
		||||
  fi
 | 
			
		||||
  exit
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
build_container
 | 
			
		||||
description
 | 
			
		||||
 | 
			
		||||
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
 | 
			
		||||
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
 | 
			
		||||
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}"
 | 
			
		||||
@@ -50,6 +50,7 @@ function update_script() {
 | 
			
		||||
  else
 | 
			
		||||
    msg_ok "$APP is already up to date (${RELEASE})"
 | 
			
		||||
  fi
 | 
			
		||||
  exit
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
@@ -40,6 +40,7 @@ function update_script() {
 | 
			
		||||
    msg_ok "Started Service"
 | 
			
		||||
    msg_ok "Updated successfully!\n"
 | 
			
		||||
  fi
 | 
			
		||||
  exit
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										68
									
								
								ct/reitti.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										68
									
								
								ct/reitti.sh
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,68 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
 | 
			
		||||
# Copyright (c) 2021-2025 community-scripts ORG
 | 
			
		||||
# Author: MickLesk (CanbiZ)
 | 
			
		||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
 | 
			
		||||
# Source: https://github.com/dedicatedcode/reitti
 | 
			
		||||
 | 
			
		||||
APP="Reitti"
 | 
			
		||||
var_tags="${var_tags:-location-tracker}"
 | 
			
		||||
var_cpu="${var_cpu:-2}"
 | 
			
		||||
var_ram="${var_ram:-4096}"
 | 
			
		||||
var_disk="${var_disk:-15}"
 | 
			
		||||
var_os="${var_os:-debian}"
 | 
			
		||||
var_version="${var_version:-13}"
 | 
			
		||||
var_unprivileged="${var_unprivileged:-1}"
 | 
			
		||||
 | 
			
		||||
header_info "$APP"
 | 
			
		||||
variables
 | 
			
		||||
color
 | 
			
		||||
catch_errors
 | 
			
		||||
 | 
			
		||||
function update_script() {
 | 
			
		||||
  header_info
 | 
			
		||||
  check_container_storage
 | 
			
		||||
  check_container_resources
 | 
			
		||||
  if [[ ! -f /opt/reitti/reitti.jar ]]; then
 | 
			
		||||
    msg_error "No ${APP} Installation Found!"
 | 
			
		||||
    exit
 | 
			
		||||
  fi
 | 
			
		||||
  if check_for_gh_release "reitti" "dedicatedcode/reitti"; then
 | 
			
		||||
    msg_info "Stopping Service"
 | 
			
		||||
    systemctl stop reitti
 | 
			
		||||
    msg_ok "Stopped Service"
 | 
			
		||||
 | 
			
		||||
    rm -f /opt/reitti/reitti.jar
 | 
			
		||||
    USE_ORIGINAL_FILENAME="true" fetch_and_deploy_gh_release "reitti" "dedicatedcode/reitti" "singlefile" "latest" "/opt/reitti" "reitti-app.jar"
 | 
			
		||||
    mv /opt/reitti/reitti-*.jar /opt/reitti/reitti.jar
 | 
			
		||||
 | 
			
		||||
    msg_info "Starting Service"
 | 
			
		||||
    systemctl start reitti
 | 
			
		||||
    msg_ok "Started Service"
 | 
			
		||||
    msg_ok "Updated Successfully!"
 | 
			
		||||
  fi
 | 
			
		||||
  if check_for_gh_release "photon" "dedicatedcode/reitti"; then
 | 
			
		||||
    msg_info "Stopping Service"
 | 
			
		||||
    systemctl stop photon
 | 
			
		||||
    msg_ok "Stopped Service"
 | 
			
		||||
 | 
			
		||||
    rm -f /opt/photon/photon.jar
 | 
			
		||||
    USE_ORIGINAL_FILENAME="true" fetch_and_deploy_gh_release "photon" "komoot/photon" "singlefile" "latest" "/opt/photon" "photon-0*.jar"
 | 
			
		||||
    mv /opt/photon/photon-*.jar /opt/photon/photon.jar
 | 
			
		||||
 | 
			
		||||
    msg_info "Starting Service"
 | 
			
		||||
    systemctl start photon
 | 
			
		||||
    msg_ok "Started Service"
 | 
			
		||||
    msg_ok "Updated Successfully!"
 | 
			
		||||
  fi
 | 
			
		||||
  exit
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
build_container
 | 
			
		||||
description
 | 
			
		||||
 | 
			
		||||
msg_ok "Completed Successfully!\n"
 | 
			
		||||
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
 | 
			
		||||
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
 | 
			
		||||
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}"
 | 
			
		||||
@@ -40,6 +40,7 @@ function update_script() {
 | 
			
		||||
  else
 | 
			
		||||
    msg_ok "${APP} is already up to date (${RELEASE})"
 | 
			
		||||
  fi
 | 
			
		||||
  exit
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										35
									
								
								frontend/public/json/bentopdf.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								frontend/public/json/bentopdf.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,35 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "BentoPDF",
 | 
			
		||||
  "slug": "bentopdf",
 | 
			
		||||
  "categories": [
 | 
			
		||||
    12
 | 
			
		||||
  ],
 | 
			
		||||
  "date_created": "2025-10-30",
 | 
			
		||||
  "type": "ct",
 | 
			
		||||
  "updateable": true,
 | 
			
		||||
  "privileged": false,
 | 
			
		||||
  "interface_port": 8080,
 | 
			
		||||
  "documentation": "https://github.com/alam00000/bentopdf",
 | 
			
		||||
  "website": "https://www.bentopdf.com",
 | 
			
		||||
  "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/bentopdf.webp",
 | 
			
		||||
  "config_path": "",
 | 
			
		||||
  "description": "A privacy-first, 100% client-side PDF Toolkit. No signups/accounts, works in the browser, online or offline.",
 | 
			
		||||
  "install_methods": [
 | 
			
		||||
    {
 | 
			
		||||
      "type": "default",
 | 
			
		||||
      "script": "ct/bentopdf.sh",
 | 
			
		||||
      "resources": {
 | 
			
		||||
        "cpu": 1,
 | 
			
		||||
        "ram": 2048,
 | 
			
		||||
        "hdd": 4,
 | 
			
		||||
        "os": "debian",
 | 
			
		||||
        "version": "13"
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "default_credentials": {
 | 
			
		||||
    "username": null,
 | 
			
		||||
    "password": null
 | 
			
		||||
  },
 | 
			
		||||
  "notes": []
 | 
			
		||||
}
 | 
			
		||||
@@ -28,8 +28,8 @@
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "default_credentials": {
 | 
			
		||||
    "username": null,
 | 
			
		||||
    "password": null
 | 
			
		||||
    "username": "admin",
 | 
			
		||||
    "password": "admin"
 | 
			
		||||
  },
 | 
			
		||||
  "notes": [
 | 
			
		||||
    {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										40
									
								
								frontend/public/json/livebook.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										40
									
								
								frontend/public/json/livebook.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,40 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "Livebook",
 | 
			
		||||
  "slug": "livebook",
 | 
			
		||||
  "categories": [
 | 
			
		||||
    20
 | 
			
		||||
  ],
 | 
			
		||||
  "date_created": "2025-10-30",
 | 
			
		||||
  "type": "ct",
 | 
			
		||||
  "updateable": true,
 | 
			
		||||
  "privileged": false,
 | 
			
		||||
  "interface_port": 8080,
 | 
			
		||||
  "documentation": "https://hexdocs.pm/livebook/readme.html",
 | 
			
		||||
  "config_path": null,
 | 
			
		||||
  "website": "https://livebook.dev",
 | 
			
		||||
  "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/livebook.webp",
 | 
			
		||||
  "description": "Elixir Livebook is an interactive, web-based notebook platform for Elixir that combines code, documentation, and visualizations in a single document. Similar to Jupyter notebooks, it allows developers to write and execute Elixir code in real-time, making it ideal for data exploration, prototyping, learning, and collaborative development. Livebook features rich markdown support, built-in charting capabilities, and seamless integration with the Elixir ecosystem.",
 | 
			
		||||
  "install_methods": [
 | 
			
		||||
    {
 | 
			
		||||
      "type": "default",
 | 
			
		||||
      "script": "ct/livebook.sh",
 | 
			
		||||
      "resources": {
 | 
			
		||||
        "cpu": 1,
 | 
			
		||||
        "ram": 1024,
 | 
			
		||||
        "hdd": 4,
 | 
			
		||||
        "os": "Ubuntu",
 | 
			
		||||
        "version": "24.04"
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "default_credentials": {
 | 
			
		||||
    "username": null,
 | 
			
		||||
    "password": null
 | 
			
		||||
  },
 | 
			
		||||
  "notes": [
 | 
			
		||||
    {
 | 
			
		||||
      "text": "Show initial Livebook password: `cat ~/livebook.creds`",
 | 
			
		||||
      "type": "info"
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										40
									
								
								frontend/public/json/reitti.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										40
									
								
								frontend/public/json/reitti.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,40 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "Reitti",
 | 
			
		||||
  "slug": "reitti",
 | 
			
		||||
  "categories": [
 | 
			
		||||
    21
 | 
			
		||||
  ],
 | 
			
		||||
  "date_created": "2025-10-30",
 | 
			
		||||
  "type": "ct",
 | 
			
		||||
  "updateable": true,
 | 
			
		||||
  "privileged": false,
 | 
			
		||||
  "interface_port": 8080,
 | 
			
		||||
  "documentation": "https://www.dedicatedcode.com/projects/reitti/",
 | 
			
		||||
  "config_path": "/opt/reitti/.env",
 | 
			
		||||
  "website": "https://www.dedicatedcode.com/projects/reitti/",
 | 
			
		||||
  "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/reitti.webp",
 | 
			
		||||
  "description": "Reitti is a self-hosted location tracking and analysis platform that detects significant places, trip patterns, and integrates with OwnTracks, GPSLogger, and Immich. It uses PostgreSQL + PostGIS, RabbitMQ, Redis, and an optional Photon geocoder.",
 | 
			
		||||
  "install_methods": [
 | 
			
		||||
    {
 | 
			
		||||
      "type": "default",
 | 
			
		||||
      "script": "ct/reitti.sh",
 | 
			
		||||
      "resources": {
 | 
			
		||||
        "cpu": 2,
 | 
			
		||||
        "ram": 4096,
 | 
			
		||||
        "hdd": 15,
 | 
			
		||||
        "os": "debian",
 | 
			
		||||
        "version": "13"
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "default_credentials": {
 | 
			
		||||
    "username": "admin",
 | 
			
		||||
    "password": "admin"
 | 
			
		||||
  },
 | 
			
		||||
  "notes": [
 | 
			
		||||
    {
 | 
			
		||||
      "text": "Photon Geocoder running at http://127.0.0.1:2322. Photon is fully setup, but without sample data. (filesize is big) -> checkout our guide: `https://github.com/community-scripts/ProxmoxVE/discussions/8737`.",
 | 
			
		||||
      "type": "info"
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
@@ -1,4 +1,69 @@
 | 
			
		||||
[
 | 
			
		||||
  {
 | 
			
		||||
    "name": "OliveTin/OliveTin",
 | 
			
		||||
    "version": "2025-10-30",
 | 
			
		||||
    "date": "2025-10-30T10:02:40Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "docker/compose",
 | 
			
		||||
    "version": "v2.40.3",
 | 
			
		||||
    "date": "2025-10-30T09:35:37Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "prometheus/prometheus",
 | 
			
		||||
    "version": "v0.307.3",
 | 
			
		||||
    "date": "2025-10-30T08:13:40Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "zabbix/zabbix",
 | 
			
		||||
    "version": "8.0.0alpha1",
 | 
			
		||||
    "date": "2025-10-30T07:59:41Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "semaphoreui/semaphore",
 | 
			
		||||
    "version": "v2.16.37",
 | 
			
		||||
    "date": "2025-10-30T07:54:49Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "mattermost/mattermost",
 | 
			
		||||
    "version": "v10.5.14",
 | 
			
		||||
    "date": "2025-10-30T06:43:58Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "morpheus65535/bazarr",
 | 
			
		||||
    "version": "v1.5.3",
 | 
			
		||||
    "date": "2025-09-20T12:12:33Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "Jackett/Jackett",
 | 
			
		||||
    "version": "v0.24.222",
 | 
			
		||||
    "date": "2025-10-30T05:55:32Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "documenso/documenso",
 | 
			
		||||
    "version": "v1.13.2",
 | 
			
		||||
    "date": "2025-10-30T04:12:40Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "ipfs/kubo",
 | 
			
		||||
    "version": "v0.38.2",
 | 
			
		||||
    "date": "2025-10-30T02:44:09Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "jeedom/core",
 | 
			
		||||
    "version": "4.4.20",
 | 
			
		||||
    "date": "2025-10-30T00:27:05Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "steveiliop56/tinyauth",
 | 
			
		||||
    "version": "v4.0.1",
 | 
			
		||||
    "date": "2025-10-15T16:53:55Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "gtsteffaniak/filebrowser",
 | 
			
		||||
    "version": "v1.0.0-beta",
 | 
			
		||||
    "date": "2025-10-30T00:09:23Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "BerriAI/litellm",
 | 
			
		||||
    "version": "v1.77.7.dev3",
 | 
			
		||||
@@ -31,7 +96,7 @@
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "runtipi/runtipi",
 | 
			
		||||
    "version": "e2e",
 | 
			
		||||
    "version": "nightly",
 | 
			
		||||
    "date": "2025-10-29T19:37:29Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
@@ -39,6 +104,11 @@
 | 
			
		||||
    "version": "v6.4.2",
 | 
			
		||||
    "date": "2025-10-07T08:11:58Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "keycloak/keycloak",
 | 
			
		||||
    "version": "26.4.2",
 | 
			
		||||
    "date": "2025-10-23T06:59:32Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "ollama/ollama",
 | 
			
		||||
    "version": "v0.12.7-rc1",
 | 
			
		||||
@@ -99,11 +169,6 @@
 | 
			
		||||
    "version": "v1.141.0",
 | 
			
		||||
    "date": "2025-10-29T11:45:43Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "zabbix/zabbix",
 | 
			
		||||
    "version": "7.4.4",
 | 
			
		||||
    "date": "2025-10-29T11:31:26Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "wazuh/wazuh",
 | 
			
		||||
    "version": "coverity-w44-4.14.1",
 | 
			
		||||
@@ -139,16 +204,6 @@
 | 
			
		||||
    "version": "v0.99.0",
 | 
			
		||||
    "date": "2025-10-29T06:32:09Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "morpheus65535/bazarr",
 | 
			
		||||
    "version": "v1.5.3",
 | 
			
		||||
    "date": "2025-09-20T12:12:33Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "Jackett/Jackett",
 | 
			
		||||
    "version": "v0.24.206",
 | 
			
		||||
    "date": "2025-10-29T05:53:41Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "henrygd/beszel",
 | 
			
		||||
    "version": "v0.15.2",
 | 
			
		||||
@@ -164,16 +219,6 @@
 | 
			
		||||
    "version": "v1.0.1",
 | 
			
		||||
    "date": "2025-10-29T03:25:13Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "jeedom/core",
 | 
			
		||||
    "version": "4.4.20",
 | 
			
		||||
    "date": "2025-10-29T00:27:05Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "steveiliop56/tinyauth",
 | 
			
		||||
    "version": "v4.0.1",
 | 
			
		||||
    "date": "2025-10-15T16:53:55Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "tailscale/tailscale",
 | 
			
		||||
    "version": "v1.90.4",
 | 
			
		||||
@@ -194,15 +239,10 @@
 | 
			
		||||
    "version": "v4.4.5",
 | 
			
		||||
    "date": "2025-10-28T18:35:47Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "keycloak/keycloak",
 | 
			
		||||
    "version": "26.4.2",
 | 
			
		||||
    "date": "2025-10-23T06:59:32Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "javedh-dev/tracktor",
 | 
			
		||||
    "version": "0.4.4",
 | 
			
		||||
    "date": "2025-10-28T17:39:14Z"
 | 
			
		||||
    "version": "0.4.3",
 | 
			
		||||
    "date": "2025-10-28T17:32:48Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "pi-hole/pi-hole",
 | 
			
		||||
@@ -224,11 +264,6 @@
 | 
			
		||||
    "version": "v0.22.11",
 | 
			
		||||
    "date": "2025-10-28T15:48:53Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "mattermost/mattermost",
 | 
			
		||||
    "version": "v10.5.13",
 | 
			
		||||
    "date": "2025-10-28T15:48:37Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "traefik/traefik",
 | 
			
		||||
    "version": "v3.5.4",
 | 
			
		||||
@@ -244,11 +279,6 @@
 | 
			
		||||
    "version": "v25.4",
 | 
			
		||||
    "date": "2025-10-09T10:27:01Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "semaphoreui/semaphore",
 | 
			
		||||
    "version": "v2.16.36",
 | 
			
		||||
    "date": "2025-10-28T13:05:28Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "n8n-io/n8n",
 | 
			
		||||
    "version": "n8n@1.117.3",
 | 
			
		||||
@@ -274,16 +304,6 @@
 | 
			
		||||
    "version": "v1.8.1",
 | 
			
		||||
    "date": "2025-10-28T08:07:33Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "gtsteffaniak/filebrowser",
 | 
			
		||||
    "version": "v0.8.11-beta",
 | 
			
		||||
    "date": "2025-10-28T01:15:42Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "OliveTin/OliveTin",
 | 
			
		||||
    "version": "3000.2.1",
 | 
			
		||||
    "date": "2025-10-27T21:08:25Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "goauthentik/authentik",
 | 
			
		||||
    "version": "version/2025.10.0",
 | 
			
		||||
@@ -434,11 +454,6 @@
 | 
			
		||||
    "version": "2025.10.3",
 | 
			
		||||
    "date": "2025-10-24T01:08:22Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "documenso/documenso",
 | 
			
		||||
    "version": "v1.13.1",
 | 
			
		||||
    "date": "2025-10-23T23:52:45Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "Cleanuparr/Cleanuparr",
 | 
			
		||||
    "version": "v2.4.0",
 | 
			
		||||
@@ -474,21 +489,11 @@
 | 
			
		||||
    "version": "issue-596",
 | 
			
		||||
    "date": "2025-10-22T19:48:56Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "docker/compose",
 | 
			
		||||
    "version": "v2.40.2",
 | 
			
		||||
    "date": "2025-10-22T17:38:12Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "louislam/uptime-kuma",
 | 
			
		||||
    "version": "2.0.2",
 | 
			
		||||
    "date": "2025-10-22T17:03:54Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "prometheus/prometheus",
 | 
			
		||||
    "version": "v0.307.2",
 | 
			
		||||
    "date": "2025-10-22T16:00:08Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "NLnetLabs/unbound",
 | 
			
		||||
    "version": "release-1.24.1",
 | 
			
		||||
@@ -794,11 +799,6 @@
 | 
			
		||||
    "version": "11.0.1",
 | 
			
		||||
    "date": "2025-10-09T12:34:15Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "ipfs/kubo",
 | 
			
		||||
    "version": "v0.38.1",
 | 
			
		||||
    "date": "2025-10-08T21:34:07Z"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "name": "autobrr/autobrr",
 | 
			
		||||
    "version": "v1.68.0",
 | 
			
		||||
 
 | 
			
		||||
@@ -13,8 +13,65 @@ setting_up_container
 | 
			
		||||
network_check
 | 
			
		||||
update_os
 | 
			
		||||
 | 
			
		||||
ASTERISK_VERSIONS_URL="https://www.asterisk.org/downloads/asterisk/all-asterisk-versions/"
 | 
			
		||||
html=$(curl -fsSL "$ASTERISK_VERSIONS_URL")
 | 
			
		||||
 | 
			
		||||
LTS_VERSION=""
 | 
			
		||||
for major in 20 22 24 26; do
 | 
			
		||||
  block=$(echo "$html" | awk "/Asterisk $major - LTS/,/<ul>/")
 | 
			
		||||
  ver=$(echo "$block" | grep -oE 'Download Latest - [0-9]+\.[0-9]+(\.[0-9]+)?' | head -n1 | sed -E 's/.* - //')
 | 
			
		||||
  if [ -n "$ver" ]; then
 | 
			
		||||
    LTS_VERSION="$LTS_VERSION $ver"
 | 
			
		||||
  fi
 | 
			
		||||
  unset ver block
 | 
			
		||||
done
 | 
			
		||||
LTS_VERSION=$(echo "$LTS_VERSION" | xargs | tr ' ' '\n' | sort -V | tail -n1)
 | 
			
		||||
 | 
			
		||||
STD_VERSION=""
 | 
			
		||||
for major in 21 23 25 27; do
 | 
			
		||||
  block=$(echo "$html" | awk "/Asterisk $major</,/<ul>/")
 | 
			
		||||
  ver=$(echo "$block" | grep -oE 'Download (Latest - )?[0-9]+\.[0-9]+(\.[0-9]+)?' | head -n1 | sed -E 's/.* - //;s/Download //')
 | 
			
		||||
  if [ -n "$ver" ]; then
 | 
			
		||||
    STD_VERSION="$STD_VERSION $ver"
 | 
			
		||||
  fi
 | 
			
		||||
  unset ver block
 | 
			
		||||
done
 | 
			
		||||
STD_VERSION=$(echo "$STD_VERSION" | xargs | tr ' ' '\n' | sort -V | tail -n1)
 | 
			
		||||
 | 
			
		||||
cert_block=$(echo "$html" | awk '/Certified Asterisk/,/<ul>/')
 | 
			
		||||
CERT_VERSION=$(echo "$cert_block" | grep -oE 'Download Latest - [0-9]+\.[0-9]+-cert[0-9]+' | head -n1 | sed -E 's/.* - //')
 | 
			
		||||
 | 
			
		||||
cat <<EOF
 | 
			
		||||
Choose Asterisk version to install:
 | 
			
		||||
1) Latest Standard ($STD_VERSION)
 | 
			
		||||
2) Latest LTS ($LTS_VERSION)
 | 
			
		||||
3) Latest Certified ($CERT_VERSION)
 | 
			
		||||
EOF
 | 
			
		||||
read -rp "Enter choice [1-3]: " ASTERISK_CHOICE
 | 
			
		||||
 | 
			
		||||
case "$ASTERISK_CHOICE" in
 | 
			
		||||
2)
 | 
			
		||||
  ASTERISK_VERSION="$LTS_VERSION"
 | 
			
		||||
  ;;
 | 
			
		||||
3)
 | 
			
		||||
  ASTERISK_VERSION="$CERT_VERSION"
 | 
			
		||||
  CERTIFIED=1
 | 
			
		||||
  ;;
 | 
			
		||||
*)
 | 
			
		||||
  ASTERISK_VERSION="$STD_VERSION"
 | 
			
		||||
  ;;
 | 
			
		||||
esac
 | 
			
		||||
 | 
			
		||||
if [[ "$CERTIFIED" == "1" ]]; then
 | 
			
		||||
  RELEASE="certified-asterisk-${ASTERISK_VERSION}.tar.gz"
 | 
			
		||||
  DOWNLOAD_URL="https://downloads.asterisk.org/pub/telephony/certified-asterisk/$RELEASE"
 | 
			
		||||
else
 | 
			
		||||
  RELEASE="asterisk-${ASTERISK_VERSION}.tar.gz"
 | 
			
		||||
  DOWNLOAD_URL="https://downloads.asterisk.org/pub/telephony/asterisk/$RELEASE"
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
msg_info "Installing Dependencies"
 | 
			
		||||
$STD apt-get install -y \
 | 
			
		||||
$STD apt install -y \
 | 
			
		||||
  libsrtp2-dev \
 | 
			
		||||
  build-essential \
 | 
			
		||||
  libedit-dev \
 | 
			
		||||
@@ -25,13 +82,12 @@ $STD apt-get install -y \
 | 
			
		||||
msg_ok "Installed Dependencies"
 | 
			
		||||
 | 
			
		||||
msg_info "Downloading Asterisk"
 | 
			
		||||
RELEASE=$(curl -fsSL https://downloads.asterisk.org/pub/telephony/asterisk/ | grep -o 'asterisk-[0-9]\+-current\.tar\.gz' | sort -V | tail -n1)
 | 
			
		||||
temp_file=$(mktemp)
 | 
			
		||||
curl -fsSL "https://downloads.asterisk.org/pub/telephony/asterisk/${RELEASE}" -o "$temp_file"
 | 
			
		||||
curl -fsSL "$DOWNLOAD_URL" -o "$temp_file"
 | 
			
		||||
mkdir -p /opt/asterisk
 | 
			
		||||
tar zxf "$temp_file" --strip-components=1 -C /opt/asterisk
 | 
			
		||||
cd /opt/asterisk
 | 
			
		||||
msg_ok "Downloaded Asterisk"
 | 
			
		||||
msg_ok "Downloaded Asterisk ($RELEASE)"
 | 
			
		||||
 | 
			
		||||
msg_info "Installing Asterisk"
 | 
			
		||||
$STD ./contrib/scripts/install_prereq install
 | 
			
		||||
@@ -51,6 +107,7 @@ customize
 | 
			
		||||
 | 
			
		||||
msg_info "Cleaning up"
 | 
			
		||||
rm -f "$temp_file"
 | 
			
		||||
$STD apt-get -y autoremove
 | 
			
		||||
$STD apt-get -y autoclean
 | 
			
		||||
$STD apt -y autoremove
 | 
			
		||||
$STD apt -y autoclean
 | 
			
		||||
$STD apt -y clean
 | 
			
		||||
msg_ok "Cleaned"
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										53
									
								
								install/bentopdf-install.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										53
									
								
								install/bentopdf-install.sh
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,53 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
 | 
			
		||||
# Copyright (c) 2021-2025 community-scripts ORG
 | 
			
		||||
# Author: vhsdream
 | 
			
		||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
 | 
			
		||||
# Source: https://github.com/alam00000/bentopdf
 | 
			
		||||
 | 
			
		||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
 | 
			
		||||
color
 | 
			
		||||
verb_ip6
 | 
			
		||||
catch_errors
 | 
			
		||||
setting_up_container
 | 
			
		||||
network_check
 | 
			
		||||
update_os
 | 
			
		||||
 | 
			
		||||
NODE_VERSION="24" setup_nodejs
 | 
			
		||||
fetch_and_deploy_gh_release "bentopdf" "alam00000/bentopdf" "tarball" "latest" "/opt/bentopdf"
 | 
			
		||||
 | 
			
		||||
msg_info "Setup BentoPDF"
 | 
			
		||||
cd /opt/bentopdf
 | 
			
		||||
$STD npm ci --no-audit --no-fund
 | 
			
		||||
export SIMPLE_MODE=true
 | 
			
		||||
$STD npm run build -- --mode production
 | 
			
		||||
msg_ok "Setup BentoPDF"
 | 
			
		||||
 | 
			
		||||
msg_info "Creating Service"
 | 
			
		||||
cat <<EOF >/etc/systemd/system/bentopdf.service
 | 
			
		||||
[Unit]
 | 
			
		||||
Description=BentoPDF Service
 | 
			
		||||
After=network.target
 | 
			
		||||
 | 
			
		||||
[Service]
 | 
			
		||||
Type=simple
 | 
			
		||||
WorkingDirectory=/opt/bentopdf
 | 
			
		||||
ExecStart=/usr/bin/npx serve dist -p 8080
 | 
			
		||||
Restart=always
 | 
			
		||||
RestartSec=10
 | 
			
		||||
 | 
			
		||||
[Install]
 | 
			
		||||
WantedBy=multi-user.target
 | 
			
		||||
EOF
 | 
			
		||||
 | 
			
		||||
systemctl enable -q --now bentopdf
 | 
			
		||||
msg_ok "Created & started service"
 | 
			
		||||
 | 
			
		||||
motd_ssh
 | 
			
		||||
customize
 | 
			
		||||
 | 
			
		||||
msg_info "Cleaning up"
 | 
			
		||||
$STD apt -y autoremove
 | 
			
		||||
$STD apt -y autoclean
 | 
			
		||||
$STD apt -y clean
 | 
			
		||||
msg_ok "Cleaned"
 | 
			
		||||
@@ -33,6 +33,7 @@ MYSQL_VERSION=$(mariadb --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')
 | 
			
		||||
$STD mariadb -u root -e "CREATE DATABASE $DB_NAME;"
 | 
			
		||||
$STD mariadb -u root -e "CREATE USER '$DB_USER'@'localhost' IDENTIFIED BY '$DB_PASS';"
 | 
			
		||||
$STD mariadb -u root -e "GRANT ALL ON $DB_NAME.* TO '$DB_USER'@'localhost'; FLUSH PRIVILEGES;"
 | 
			
		||||
$STD mariadb -u root -e "SET GLOBAL sql_mode='';"
 | 
			
		||||
{
 | 
			
		||||
  echo "Kimai-Credentials"
 | 
			
		||||
  echo "Kimai Database User: $DB_USER"
 | 
			
		||||
@@ -49,7 +50,7 @@ echo "export COMPOSER_ALLOW_SUPERUSER=1" >>~/.bashrc
 | 
			
		||||
source ~/.bashrc
 | 
			
		||||
$STD composer install --no-dev --optimize-autoloader --no-interaction
 | 
			
		||||
cp .env.dist .env
 | 
			
		||||
sed -i "/^DATABASE_URL=/c\DATABASE_URL=mysql://$DB_USER:$DB_PASS@127.0.0.1:3306/$DB_NAME?charset=utf8mb4&serverVersion=$MYSQL_VERSION" /opt/kimai/.env
 | 
			
		||||
sed -i "/^DATABASE_URL=/c\DATABASE_URL=mysql://$DB_USER:$DB_PASS@127.0.0.1:3306/$DB_NAME?charset=utf8mb4&serverVersion=mariadb-$MYSQL_VERSION" /opt/kimai/.env
 | 
			
		||||
$STD bin/console kimai:install -n
 | 
			
		||||
$STD expect <<EOF
 | 
			
		||||
set timeout -1
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										106
									
								
								install/livebook-install.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										106
									
								
								install/livebook-install.sh
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,106 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
 | 
			
		||||
# Copyright (c) 2021-2025 community-scripts ORG
 | 
			
		||||
# Author: dkuku
 | 
			
		||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
 | 
			
		||||
# Source: https://github.com/livebook-dev/livebook
 | 
			
		||||
 | 
			
		||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
 | 
			
		||||
color
 | 
			
		||||
verb_ip6
 | 
			
		||||
catch_errors
 | 
			
		||||
setting_up_container
 | 
			
		||||
network_check
 | 
			
		||||
update_os
 | 
			
		||||
 | 
			
		||||
msg_info "Installing Dependencies"
 | 
			
		||||
$STD apt-get install -y \
 | 
			
		||||
  build-essential \
 | 
			
		||||
  ca-certificates \
 | 
			
		||||
  cmake \
 | 
			
		||||
  git \
 | 
			
		||||
  libncurses5-dev
 | 
			
		||||
msg_ok "Installed Dependencies"
 | 
			
		||||
 | 
			
		||||
msg_info "Creating livebook user"
 | 
			
		||||
mkdir -p /opt/livebook /data
 | 
			
		||||
export HOME=/opt/livebook
 | 
			
		||||
$STD adduser --system --group --home /opt/livebook --shell /bin/bash livebook
 | 
			
		||||
msg_ok "Created livebook user"
 | 
			
		||||
 | 
			
		||||
msg_warn "WARNING: This script will run an external installer from a third-party source (https://elixir-lang.org)."
 | 
			
		||||
msg_warn "The following code is NOT maintained or audited by our repository."
 | 
			
		||||
msg_warn "If you have any doubts or concerns, please review the installer code before proceeding:"
 | 
			
		||||
msg_custom "${TAB3}${GATEWAY}${BGN}${CL}" "\e[1;34m" "→  https://elixir-lang.org/install.sh"
 | 
			
		||||
echo
 | 
			
		||||
read -r -p "${TAB3}Do you want to continue? [y/N]: " CONFIRM
 | 
			
		||||
if [[ ! "$CONFIRM" =~ ^([yY][eE][sS]|[yY])$ ]]; then
 | 
			
		||||
  msg_error "Aborted by user. No changes have been made."
 | 
			
		||||
  exit 10
 | 
			
		||||
fi
 | 
			
		||||
curl -fsSO https://elixir-lang.org/install.sh
 | 
			
		||||
$STD sh install.sh elixir@latest otp@latest
 | 
			
		||||
 | 
			
		||||
msg_info "Setup Erlang and Elixir"
 | 
			
		||||
ERLANG_VERSION=$(ls /opt/livebook/.elixir-install/installs/otp/ | head -n1)
 | 
			
		||||
ELIXIR_VERSION=$(ls /opt/livebook/.elixir-install/installs/elixir/ | head -n1)
 | 
			
		||||
LIVEBOOK_PASSWORD=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c16)
 | 
			
		||||
 | 
			
		||||
export ERLANG_BIN="/opt/livebook/.elixir-install/installs/otp/$ERLANG_VERSION/bin"
 | 
			
		||||
export ELIXIR_BIN="/opt/livebook/.elixir-install/installs/elixir/$ELIXIR_VERSION/bin"
 | 
			
		||||
export PATH="$ERLANG_BIN:$ELIXIR_BIN:$PATH"
 | 
			
		||||
 | 
			
		||||
$STD mix local.hex --force
 | 
			
		||||
$STD mix local.rebar --force
 | 
			
		||||
$STD mix escript.install hex livebook --force
 | 
			
		||||
 | 
			
		||||
cat <<EOF >/opt/livebook/.env
 | 
			
		||||
export HOME=/opt/livebook
 | 
			
		||||
export ERLANG_VERSION=$ERLANG_VERSION
 | 
			
		||||
export ELIXIR_VERSION=$ELIXIR_VERSION
 | 
			
		||||
export LIVEBOOK_PORT=8080
 | 
			
		||||
export LIVEBOOK_IP="::"
 | 
			
		||||
export LIVEBOOK_HOME=/data
 | 
			
		||||
export LIVEBOOK_PASSWORD="$LIVEBOOK_PASSWORD"
 | 
			
		||||
export ESCRIPTS_BIN=/opt/livebook/.mix/escripts
 | 
			
		||||
export ERLANG_BIN="/opt/livebook/.elixir-install/installs/otp/\${ERLANG_VERSION}/bin"
 | 
			
		||||
export ELIXIR_BIN="/opt/livebook/.elixir-install/installs/elixir/\${ELIXIR_VERSION}/bin"
 | 
			
		||||
export PATH="\$ESCRIPTS_BIN:\$ERLANG_BIN:\$ELIXIR_BIN:\$PATH"
 | 
			
		||||
EOF
 | 
			
		||||
{
 | 
			
		||||
  echo "Livebook-Credentials"
 | 
			
		||||
  echo "Livebook Password: $LIVEBOOK_PASSWORD"
 | 
			
		||||
} >>~/livebook.creds
 | 
			
		||||
msg_ok "Installed Erlang $ERLANG_VERSION and Elixir $ELIXIR_VERSION"
 | 
			
		||||
 | 
			
		||||
msg_info "Installing Livebook"
 | 
			
		||||
cat <<EOF >/etc/systemd/system/livebook.service
 | 
			
		||||
[Unit]
 | 
			
		||||
Description=Livebook
 | 
			
		||||
After=network.target
 | 
			
		||||
 | 
			
		||||
[Service]
 | 
			
		||||
Type=exec
 | 
			
		||||
User=livebook
 | 
			
		||||
Group=livebook
 | 
			
		||||
WorkingDirectory=/data
 | 
			
		||||
EnvironmentFile=-/opt/livebook/.env
 | 
			
		||||
ExecStart=/bin/bash -c 'source /opt/livebook/.env && cd /opt/livebook && livebook server'
 | 
			
		||||
Restart=always
 | 
			
		||||
RestartSec=5
 | 
			
		||||
 | 
			
		||||
[Install]
 | 
			
		||||
WantedBy=multi-user.target
 | 
			
		||||
EOF
 | 
			
		||||
chown -R livebook:livebook /opt/livebook /data
 | 
			
		||||
systemctl enable -q --now livebook
 | 
			
		||||
msg_ok "Installed Livebook"
 | 
			
		||||
 | 
			
		||||
motd_ssh
 | 
			
		||||
customize
 | 
			
		||||
 | 
			
		||||
msg_info "Cleaning Up"
 | 
			
		||||
$STD apt autoremove -y
 | 
			
		||||
$STD apt autoclean -y
 | 
			
		||||
$STD apt clean -y
 | 
			
		||||
msg_ok "Cleaned Up"
 | 
			
		||||
							
								
								
									
										164
									
								
								install/reitti-install.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										164
									
								
								install/reitti-install.sh
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,164 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
 | 
			
		||||
# Copyright (c) 2021-2025 community-scripts ORG
 | 
			
		||||
# Author: MickLesk (CanbiZ)
 | 
			
		||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
 | 
			
		||||
# Source: https://github.com/dedicatedcode/reitti
 | 
			
		||||
 | 
			
		||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
 | 
			
		||||
color
 | 
			
		||||
verb_ip6
 | 
			
		||||
catch_errors
 | 
			
		||||
setting_up_container
 | 
			
		||||
network_check
 | 
			
		||||
update_os
 | 
			
		||||
 | 
			
		||||
msg_info "Installing Dependencies"
 | 
			
		||||
$STD apt install -y \
 | 
			
		||||
  redis-server \
 | 
			
		||||
  rabbitmq-server \
 | 
			
		||||
  libpq-dev \
 | 
			
		||||
  zstd
 | 
			
		||||
msg_ok "Installed Dependencies"
 | 
			
		||||
 | 
			
		||||
JAVA_VERSION="24" setup_java
 | 
			
		||||
PG_VERSION="17" PG_MODULES="postgis" setup_postgresql
 | 
			
		||||
 | 
			
		||||
msg_info "Setting up PostgreSQL"
 | 
			
		||||
DB_NAME="reitti_db"
 | 
			
		||||
DB_USER="reitti"
 | 
			
		||||
DB_PASS="$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | cut -c1-13)"
 | 
			
		||||
$STD sudo -u postgres psql -c "CREATE ROLE $DB_USER WITH LOGIN PASSWORD '$DB_PASS';"
 | 
			
		||||
$STD sudo -u postgres psql -c "CREATE DATABASE $DB_NAME WITH OWNER $DB_USER ENCODING 'UTF8' TEMPLATE template0;"
 | 
			
		||||
$STD sudo -u postgres psql -c "ALTER ROLE $DB_USER SET client_encoding TO 'utf8';"
 | 
			
		||||
$STD sudo -u postgres psql -c "ALTER ROLE $DB_USER SET default_transaction_isolation TO 'read committed';"
 | 
			
		||||
$STD sudo -u postgres psql -c "ALTER ROLE $DB_USER SET timezone TO 'UTC';"
 | 
			
		||||
$STD sudo -u postgres psql -d "$DB_NAME" -c "CREATE EXTENSION IF NOT EXISTS postgis;"
 | 
			
		||||
$STD sudo -u postgres psql -d "$DB_NAME" -c "CREATE EXTENSION IF NOT EXISTS postgis_topology;"
 | 
			
		||||
{
 | 
			
		||||
  echo "Reitti Credentials"
 | 
			
		||||
  echo "Database Name: $DB_NAME"
 | 
			
		||||
  echo "Database User: $DB_USER"
 | 
			
		||||
  echo "Database Password: $DB_PASS"
 | 
			
		||||
} >>~/reitti.creds
 | 
			
		||||
msg_ok "PostgreSQL Setup Completed"
 | 
			
		||||
 | 
			
		||||
msg_info "Configuring RabbitMQ"
 | 
			
		||||
RABBIT_USER="reitti"
 | 
			
		||||
RABBIT_PASS="$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | cut -c1-13)"
 | 
			
		||||
RABBIT_VHOST="/"
 | 
			
		||||
$STD rabbitmqctl add_user "$RABBIT_USER" "$RABBIT_PASS"
 | 
			
		||||
$STD rabbitmqctl add_vhost "$RABBIT_VHOST"
 | 
			
		||||
$STD rabbitmqctl set_permissions -p "$RABBIT_VHOST" "$RABBIT_USER" ".*" ".*" ".*"
 | 
			
		||||
$STD rabbitmqctl set_user_tags "$RABBIT_USER" administrator
 | 
			
		||||
{
 | 
			
		||||
  echo ""
 | 
			
		||||
  echo "Reitti Credentials"
 | 
			
		||||
  echo "RabbitMQ User: $RABBIT_USER"
 | 
			
		||||
  echo "RabbitMQ Password: $RABBIT_PASS"
 | 
			
		||||
} >>~/reitti.creds
 | 
			
		||||
msg_ok "Configured RabbitMQ"
 | 
			
		||||
 | 
			
		||||
USE_ORIGINAL_FILENAME="true" fetch_and_deploy_gh_release "reitti" "dedicatedcode/reitti" "singlefile" "latest" "/opt/reitti" "reitti-app.jar"
 | 
			
		||||
mv /opt/reitti/reitti-*.jar /opt/reitti/reitti.jar
 | 
			
		||||
USE_ORIGINAL_FILENAME="true" fetch_and_deploy_gh_release "photon" "komoot/photon" "singlefile" "latest" "/opt/photon" "photon-0*.jar"
 | 
			
		||||
mv /opt/photon/photon-*.jar /opt/photon/photon.jar
 | 
			
		||||
 | 
			
		||||
msg_info "Creating Reitti Configuration-File"
 | 
			
		||||
cat <<EOF >/opt/reitti/application.properties
 | 
			
		||||
# Reitti Server Base URI
 | 
			
		||||
reitti.server.advertise-uri=http://127.0.0.1:8080
 | 
			
		||||
 | 
			
		||||
# PostgreSQL Database Connection
 | 
			
		||||
spring.datasource.url=jdbc:postgresql://127.0.0.1:5432/$DB_NAME
 | 
			
		||||
spring.datasource.username=$DB_USER
 | 
			
		||||
spring.datasource.password=$DB_PASS
 | 
			
		||||
spring.datasource.driver-class-name=org.postgresql.Driver
 | 
			
		||||
 | 
			
		||||
# Flyway Database Migrations
 | 
			
		||||
spring.flyway.enabled=true
 | 
			
		||||
spring.flyway.locations=classpath:db/migration
 | 
			
		||||
spring.flyway.baseline-on-migrate=true
 | 
			
		||||
 | 
			
		||||
# RabbitMQ (Message Queue)
 | 
			
		||||
spring.rabbitmq.host=127.0.0.1
 | 
			
		||||
spring.rabbitmq.port=5672
 | 
			
		||||
spring.rabbitmq.username=$RABBIT_USER
 | 
			
		||||
spring.rabbitmq.password=$RABBIT_PASS
 | 
			
		||||
 | 
			
		||||
# Redis (Cache)
 | 
			
		||||
spring.data.redis.host=127.0.0.1
 | 
			
		||||
spring.data.redis.port=6379
 | 
			
		||||
 | 
			
		||||
# Server Port
 | 
			
		||||
server.port=8080
 | 
			
		||||
 | 
			
		||||
# Optional: Logging & Performance
 | 
			
		||||
logging.level.root=INFO
 | 
			
		||||
spring.jpa.hibernate.ddl-auto=none
 | 
			
		||||
spring.datasource.hikari.maximum-pool-size=10
 | 
			
		||||
 | 
			
		||||
# OIDC / Security Settings
 | 
			
		||||
reitti.security.oidc.registration.enabled=false
 | 
			
		||||
 | 
			
		||||
# Photon (Geocoding)
 | 
			
		||||
PHOTON_BASE_URL=http://127.0.0.1:2322
 | 
			
		||||
PROCESSING_WAIT_TIME=15
 | 
			
		||||
PROCESSING_BATCH_SIZE=1000
 | 
			
		||||
PROCESSING_WORKERS_PER_QUEUE=4-16
 | 
			
		||||
 | 
			
		||||
# Disable potentially dangerous features unless needed
 | 
			
		||||
DANGEROUS_LIFE=false
 | 
			
		||||
EOF
 | 
			
		||||
msg_ok "Created Configuration-File for Reitti"
 | 
			
		||||
 | 
			
		||||
msg_info "Creating Services"
 | 
			
		||||
cat <<EOF >/etc/systemd/system/reitti.service
 | 
			
		||||
[Unit]
 | 
			
		||||
Description=Reitti
 | 
			
		||||
After=network.target postgresql.service redis-server.service rabbitmq-server.service photon.service
 | 
			
		||||
Wants=postgresql.service redis-server.service rabbitmq-server.service photon.service
 | 
			
		||||
 | 
			
		||||
[Service]
 | 
			
		||||
Type=simple
 | 
			
		||||
WorkingDirectory=/opt/reitti/
 | 
			
		||||
ExecStart=/usr/bin/java --enable-native-access=ALL-UNNAMED -jar -Xmx2g reitti.jar
 | 
			
		||||
TimeoutStopSec=20
 | 
			
		||||
KillMode=process
 | 
			
		||||
Restart=on-failure
 | 
			
		||||
 | 
			
		||||
[Install]
 | 
			
		||||
WantedBy=multi-user.target
 | 
			
		||||
EOF
 | 
			
		||||
 | 
			
		||||
cat <<'EOF' >/etc/systemd/system/photon.service
 | 
			
		||||
[Unit]
 | 
			
		||||
Description=Photon Geocoding Service (Germany, OpenSearch)
 | 
			
		||||
After=network.target
 | 
			
		||||
 | 
			
		||||
[Service]
 | 
			
		||||
Type=simple
 | 
			
		||||
WorkingDirectory=/opt/photon
 | 
			
		||||
ExecStart=/usr/bin/java -Xmx4g -jar photon.jar \
 | 
			
		||||
  -data-dir /opt/photon \
 | 
			
		||||
  -listen-port 2322 \
 | 
			
		||||
  -listen-ip 0.0.0.0 \
 | 
			
		||||
  -cors-any
 | 
			
		||||
Restart=on-failure
 | 
			
		||||
TimeoutStopSec=20
 | 
			
		||||
 | 
			
		||||
[Install]
 | 
			
		||||
WantedBy=multi-user.target
 | 
			
		||||
EOF
 | 
			
		||||
systemctl enable -q --now photon
 | 
			
		||||
systemctl enable -q --now reitti
 | 
			
		||||
msg_ok "Created Services"
 | 
			
		||||
 | 
			
		||||
motd_ssh
 | 
			
		||||
customize
 | 
			
		||||
 | 
			
		||||
msg_info "Cleaning up"
 | 
			
		||||
$STD apt -y autoremove
 | 
			
		||||
$STD apt -y autoclean
 | 
			
		||||
$STD apt -y clean
 | 
			
		||||
msg_ok "Cleaned"
 | 
			
		||||
@@ -368,6 +368,51 @@ run_container_safe() {
 | 
			
		||||
  " || __handle_general_error "lxc-attach to CT $ct"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
cleanup_lxc() {
 | 
			
		||||
  msg_info "Cleaning up"
 | 
			
		||||
  if is_alpine; then
 | 
			
		||||
    $STD apk cache clean || true
 | 
			
		||||
    rm -rf /var/cache/apk/*
 | 
			
		||||
  else
 | 
			
		||||
    $STD apt -y autoremove || true
 | 
			
		||||
    $STD apt -y autoclean || true
 | 
			
		||||
    $STD apt -y clean || true
 | 
			
		||||
  fi
 | 
			
		||||
 | 
			
		||||
  rm -rf /tmp/* /var/tmp/*
 | 
			
		||||
 | 
			
		||||
  # Remove temp files created by mktemp/tempfile
 | 
			
		||||
  find /tmp /var/tmp -type f -name 'tmp*' -delete 2>/dev/null || true
 | 
			
		||||
  find /tmp /var/tmp -type f -name 'tempfile*' -delete 2>/dev/null || true
 | 
			
		||||
 | 
			
		||||
  find /var/log -type f -exec truncate -s 0 {} +
 | 
			
		||||
 | 
			
		||||
  # Python pip
 | 
			
		||||
  if command -v pip &>/dev/null; then pip cache purge || true; fi
 | 
			
		||||
  # Python uv
 | 
			
		||||
  if command -v uv &>/dev/null; then uv cache clear || true; fi
 | 
			
		||||
  # Node.js npm
 | 
			
		||||
  if command -v npm &>/dev/null; then npm cache clean --force || true; fi
 | 
			
		||||
  # Node.js yarn
 | 
			
		||||
  if command -v yarn &>/dev/null; then yarn cache clean || true; fi
 | 
			
		||||
  # Node.js pnpm
 | 
			
		||||
  if command -v pnpm &>/dev/null; then pnpm store prune || true; fi
 | 
			
		||||
  # Go
 | 
			
		||||
  if command -v go &>/dev/null; then go clean -cache -modcache || true; fi
 | 
			
		||||
  # Rust cargo
 | 
			
		||||
  if command -v cargo &>/dev/null; then cargo clean || true; fi
 | 
			
		||||
  # Ruby gem
 | 
			
		||||
  if command -v gem &>/dev/null; then gem cleanup || true; fi
 | 
			
		||||
  # Composer (PHP)
 | 
			
		||||
  if command -v composer &>/dev/null; then composer clear-cache || true; fi
 | 
			
		||||
 | 
			
		||||
  if command -v journalctl &>/dev/null; then
 | 
			
		||||
    $STD journalctl --rotate
 | 
			
		||||
    $STD journalctl --vacuum-time=10m
 | 
			
		||||
  fi
 | 
			
		||||
  msg_ok "Cleaned"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
check_or_create_swap() {
 | 
			
		||||
  msg_info "Checking for active swap"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user