Compare commits

..

5 Commits

Author SHA1 Message Date
tteckster be8dbcc094
Update jellyseerr-install.sh
fix service
2024-06-23 21:07:40 -04:00
tteckster 39313455e6
Update jellyseerr-install.sh
tweak
2024-06-23 20:57:38 -04:00
tteckster d81fc402a0
Update jellyseerr-install.sh
tweak
2024-06-23 20:53:26 -04:00
tteckster 8228d24027
Update jellyseerr.sh
increase build resources
2024-06-23 20:39:07 -04:00
tteckster 26fd770db5
Update jellyseerr-install.sh
from yarn to pnpm
2024-06-23 20:36:40 -04:00
2 changed files with 15 additions and 9 deletions

View File

@ -21,7 +21,7 @@ echo -e "Loading..."
APP="Jellyseerr"
var_disk="8"
var_cpu="2"
var_ram="2048"
var_ram="4096"
var_os="debian"
var_version="12"
variables
@ -77,6 +77,10 @@ start
build_container
description
msg_info "Setting Container to Normal Resources"
pct set $CTID -memory 2048
msg_ok "Set Container to Normal Resources"
msg_ok "Completed Successfully!\n"
echo -e "${APP} should be reachable by going to the following URL.
${BL}http://${IP}:5055${CL} \n"

View File

@ -33,15 +33,15 @@ $STD apt-get update
$STD apt-get install -y nodejs
msg_ok "Installed Node.js"
msg_info "Installing Yarn"
$STD npm install -g yarn
msg_ok "Installed Yarn"
msg_info "Installing pnpm"
$STD npm install -g pnpm
msg_ok "Installed pnpm"
msg_info "Installing Jellyseerr (Patience)"
git clone -q https://github.com/Fallenbagel/jellyseerr.git /opt/jellyseerr
cd /opt/jellyseerr
$STD yarn install
$STD yarn build
CYPRESS_INSTALL_BINARY=0 pnpm install --frozen-lockfile &>/dev/null
$STD pnpm build
mkdir -p /etc/jellyseerr/
cat <<EOF >/etc/jellyseerr/jellyseerr.conf
PORT=5055
@ -53,15 +53,17 @@ msg_ok "Installed Jellyseerr"
msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/jellyseerr.service
[Unit]
Description=jellyseerr Service
After=network.target
Description=Jellyseerr Service
Wants=network-online.target
After=network-online.target
[Service]
EnvironmentFile=/etc/jellyseerr/jellyseerr.conf
Environment=NODE_ENV=production
Type=exec
Restart=on-failure
WorkingDirectory=/opt/jellyseerr
ExecStart=/usr/bin/yarn start
ExecStart=/usr/bin/node dist/index.js
[Install]
WantedBy=multi-user.target