Miniflux (#9091)
This commit is contained in:
parent
6781963f46
commit
e5e44f4ebf
6
ct/headers/miniflux
Normal file
6
ct/headers/miniflux
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
__ ____ _ ______
|
||||||
|
/ |/ (_)___ (_) __/ /_ ___ __
|
||||||
|
/ /|_/ / / __ \/ / /_/ / / / / |/_/
|
||||||
|
/ / / / / / / / / __/ / /_/ /> <
|
||||||
|
/_/ /_/_/_/ /_/_/_/ /_/\__,_/_/|_|
|
||||||
|
|
||||||
55
ct/miniflux.sh
Normal file
55
ct/miniflux.sh
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
#!/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: omernaveedxyz
|
||||||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
# Source: https://miniflux.app/
|
||||||
|
|
||||||
|
APP="Miniflux"
|
||||||
|
var_tags="${var_tags:-media}"
|
||||||
|
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_unprivileged="${var_unprivileged:-1}"
|
||||||
|
|
||||||
|
header_info "$APP"
|
||||||
|
variables
|
||||||
|
color
|
||||||
|
catch_errors
|
||||||
|
|
||||||
|
function update_script() {
|
||||||
|
header_info
|
||||||
|
check_container_storage
|
||||||
|
check_container_resources
|
||||||
|
if [[ ! -f /etc/systemd/system/miniflux.service ]]; then
|
||||||
|
msg_error "No ${APP} Installation Found!"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
msg_info "Stopping Service"
|
||||||
|
$STD miniflux -flush-sessions -config-file /etc/miniflux.conf
|
||||||
|
systemctl stop miniflux
|
||||||
|
msg_ok "Service Stopped"
|
||||||
|
|
||||||
|
fetch_and_deploy_gh_release "miniflux" "miniflux/v2" "binary" "latest"
|
||||||
|
|
||||||
|
msg_info "Updating Miniflux"
|
||||||
|
$STD miniflux -migrate -config-file /etc/miniflux.conf
|
||||||
|
msg_ok "Updated Miniflux"
|
||||||
|
msg_info "Starting Service"
|
||||||
|
$STD systemctl start miniflux
|
||||||
|
msg_ok "Started Service"
|
||||||
|
msg_ok "Updated successfully"
|
||||||
|
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
frontend/public/json/miniflux.json
Normal file
40
frontend/public/json/miniflux.json
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{
|
||||||
|
"name": "Miniflux",
|
||||||
|
"slug": "miniflux",
|
||||||
|
"categories": [
|
||||||
|
13
|
||||||
|
],
|
||||||
|
"date_created": "2025-11-12",
|
||||||
|
"type": "ct",
|
||||||
|
"updateable": true,
|
||||||
|
"privileged": false,
|
||||||
|
"config_path": "/etc/miniflux.conf",
|
||||||
|
"interface_port": 8080,
|
||||||
|
"documentation": "https://miniflux.app/docs/index.html",
|
||||||
|
"website": "https://miniflux.app/",
|
||||||
|
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/miniflux-light.webp",
|
||||||
|
"description": "Miniflux is a minimalist and opinionated feed reader.",
|
||||||
|
"install_methods": [
|
||||||
|
{
|
||||||
|
"type": "default",
|
||||||
|
"script": "ct/miniflux.sh",
|
||||||
|
"resources": {
|
||||||
|
"cpu": 2,
|
||||||
|
"ram": 2048,
|
||||||
|
"hdd": 8,
|
||||||
|
"os": "Debian",
|
||||||
|
"version": "13"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"default_credentials": {
|
||||||
|
"username": "admin",
|
||||||
|
"password": "randomly generated during installation process"
|
||||||
|
},
|
||||||
|
"notes": [
|
||||||
|
{
|
||||||
|
"text": "Admin password available as `ADMIN_PASSWORD` in `~/miniflux.creds`",
|
||||||
|
"type": "info"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
41
install/miniflux-install.sh
Normal file
41
install/miniflux-install.sh
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Copyright (c) 2021-2025 community-scripts ORG
|
||||||
|
# Author: omernaveedxyz
|
||||||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
# Source: https://miniflux.app/
|
||||||
|
|
||||||
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||||
|
color
|
||||||
|
verb_ip6
|
||||||
|
catch_errors
|
||||||
|
setting_up_container
|
||||||
|
network_check
|
||||||
|
update_os
|
||||||
|
|
||||||
|
PG_VERSION=17 setup_postgresql
|
||||||
|
PG_DB_NAME="miniflux_db" PG_DB_USER="miniflux" PG_DB_GRANT_SUPERUSER="true" setup_postgresql_db
|
||||||
|
fetch_and_deploy_gh_release "miniflux" "miniflux/v2" "binary" "latest"
|
||||||
|
|
||||||
|
msg_info "Configuring Miniflux"
|
||||||
|
ADMIN_NAME=admin
|
||||||
|
ADMIN_PASS="$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13)"
|
||||||
|
cat <<EOF >/etc/miniflux.conf
|
||||||
|
# See https://miniflux.app/docs/configuration.html
|
||||||
|
DATABASE_URL=user=$PG_DB_USER password=$PG_DB_PASS dbname=$PG_DB_NAME sslmode=disable
|
||||||
|
CREATE_ADMIN=1
|
||||||
|
ADMIN_USERNAME=$ADMIN_NAME
|
||||||
|
ADMIN_PASSWORD=$ADMIN_PASS
|
||||||
|
LISTEN_ADDR=0.0.0.0:8080
|
||||||
|
EOF
|
||||||
|
{
|
||||||
|
echo "ADMIN_USERNAME: $ADMIN_NAME"
|
||||||
|
echo "ADMIN_PASSWORD: $ADMIN_PASS"
|
||||||
|
} >>~/miniflux.creds
|
||||||
|
$STD miniflux -migrate -config-file /etc/miniflux.conf
|
||||||
|
systemctl enable -q --now miniflux
|
||||||
|
msg_ok "Configured Miniflux"
|
||||||
|
|
||||||
|
motd_ssh
|
||||||
|
customize
|
||||||
|
cleanup_lxc
|
||||||
Loading…
x
Reference in New Issue
Block a user