#!/usr/bin/env bash source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: kkroboth # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE # Source: https://fileflows.com/ APP="FileFlows" var_tags="${var_tags:-media;automation}" var_cpu="${var_cpu:-2}" var_ram="${var_ram:-2048}" var_disk="${var_disk:-8}" var_os="${var_os:-debian}" var_version="${var_version:-13}" var_arm64="${var_arm64:-yes}" var_unprivileged="${var_unprivileged:-1}" var_gpu="${var_gpu:-yes}" header_info "$APP" variables color catch_errors function update_script() { header_info check_container_storage check_container_resources if [[ ! -d /opt/fileflows ]]; then msg_error "No ${APP} Installation Found!" exit fi update_available=$(curl -fsSL -X 'GET' "http://localhost:19200/api/status/update-available" -H 'accept: application/json' | jq .UpdateAvailable) if [[ "${update_available}" == "true" ]]; then msg_info "Stopping Service" systemctl --all stop 'fileflows*' msg_info "Stopped Service" msg_info "Creating Backup" ls /opt/*.tar.gz &>/dev/null && rm -f /opt/*.tar.gz backup_filename="/opt/${APP}_backup_$(date +%F).tar.gz" tar -czf "$backup_filename" -C /opt/fileflows Data msg_ok "Backup Created" # FileFlows tracks the latest release, whose .NET target can move (e.g. 8 -> 10); # ensure the current ASP.NET Core Runtime so an existing install doesn't fail to # start after updating to a newer .NET major version. msg_info "Ensuring ASP.NET Core Runtime" if [[ "$(arch_resolve)" == "arm64" ]]; then if [[ ! -x /usr/lib/dotnet10/dotnet ]]; then curl -fsSL https://dot.net/v1/dotnet-install.sh -o /tmp/dotnet-install.sh $STD bash /tmp/dotnet-install.sh --channel 10.0 --runtime aspnetcore --install-dir /usr/lib/dotnet10 ln -sf /usr/lib/dotnet10/dotnet /usr/bin/dotnet rm -f /tmp/dotnet-install.sh fi elif ! is_package_installed "aspnetcore-runtime-10.0"; then $STD apt remove -y aspnetcore-runtime-8.0 aspnetcore-runtime-9.0 2>/dev/null || true setup_deb822_repo \ "microsoft" \ "https://packages.microsoft.com/keys/microsoft-2025.asc" \ "https://packages.microsoft.com/debian/13/prod/" \ "trixie" $STD apt install -y aspnetcore-runtime-10.0 fi msg_ok "Ensured ASP.NET Core Runtime" fetch_and_deploy_from_url "https://fileflows.com/downloads/zip" "/opt/fileflows" msg_info "Starting Service" systemctl --all start 'fileflows*' msg_ok "Started Service" msg_ok "Updated successfully!" else msg_ok "No update required. ${APP} is already at latest version" 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 "${GATEWAY}${BGN}http://${IP}:19200${CL}"