2023-08-16 12:56:17 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2025-01-01 12:37:29 +00:00
|
|
|
# Copyright (c) 2021-2025 tteck
|
2023-08-16 12:56:17 +00:00
|
|
|
# Author: tteck (tteckster)
|
2024-11-08 10:34:07 +00:00
|
|
|
# Co-Author: MickLesk (Canbiz)
|
2023-08-16 12:56:17 +00:00
|
|
|
# License: MIT
|
2024-11-02 07:48:05 +00:00
|
|
|
# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
2024-11-08 10:34:07 +00:00
|
|
|
# Source: https://github.com/ajnart/homarr
|
2023-08-16 12:56:17 +00:00
|
|
|
|
|
|
|
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
|
|
|
|
color
|
|
|
|
verb_ip6
|
|
|
|
catch_errors
|
|
|
|
setting_up_container
|
|
|
|
network_check
|
|
|
|
update_os
|
|
|
|
|
|
|
|
msg_info "Installing Dependencies"
|
2025-01-03 18:26:17 +00:00
|
|
|
$STD apt-get install -y \
|
|
|
|
sudo \
|
|
|
|
mc \
|
2025-01-04 17:17:19 +00:00
|
|
|
curl \
|
2025-01-03 18:26:17 +00:00
|
|
|
ca-certificates \
|
|
|
|
gnupg \
|
|
|
|
make \
|
|
|
|
g++ \
|
2025-01-03 23:09:47 +00:00
|
|
|
build-essential
|
2023-08-16 12:56:17 +00:00
|
|
|
msg_ok "Installed Dependencies"
|
|
|
|
|
|
|
|
msg_info "Setting up Node.js Repository"
|
2023-09-02 12:36:54 +00:00
|
|
|
mkdir -p /etc/apt/keyrings
|
2023-09-01 11:19:05 +00:00
|
|
|
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
2023-11-11 17:39:23 +00:00
|
|
|
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" >/etc/apt/sources.list.d/nodesource.list
|
2023-08-16 12:56:17 +00:00
|
|
|
msg_ok "Set up Node.js Repository"
|
|
|
|
|
2023-11-11 18:13:45 +00:00
|
|
|
msg_info "Installing Node.js/Yarn"
|
2023-09-01 11:19:05 +00:00
|
|
|
$STD apt-get update
|
2023-08-16 12:56:17 +00:00
|
|
|
$STD apt-get install -y nodejs
|
|
|
|
$STD npm install -g yarn
|
2023-11-11 18:13:45 +00:00
|
|
|
msg_ok "Installed Node.js/Yarn"
|
2023-08-16 12:56:17 +00:00
|
|
|
|
|
|
|
msg_info "Installing Homarr (Patience)"
|
2024-11-08 10:34:07 +00:00
|
|
|
RELEASE=$(curl -s https://api.github.com/repos/ajnart/homarr/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
|
|
|
|
wget -q "https://github.com/ajnart/homarr/archive/refs/tags/v${RELEASE}.zip"
|
|
|
|
unzip -q v${RELEASE}.zip
|
2024-11-10 16:20:37 +00:00
|
|
|
rm -rf v${RELEASE}.zip
|
2024-11-08 10:34:07 +00:00
|
|
|
mv homarr-${RELEASE} /opt/homarr
|
2024-04-15 03:53:22 +00:00
|
|
|
cat <<EOF >/opt/homarr/.env
|
|
|
|
DATABASE_URL="file:./database/db.sqlite"
|
|
|
|
NEXTAUTH_URL="http://localhost:3000"
|
|
|
|
NEXTAUTH_SECRET="$(openssl rand -base64 32)"
|
|
|
|
NEXT_PUBLIC_DISABLE_ANALYTICS="true"
|
|
|
|
DEFAULT_COLOR_SCHEME="dark"
|
|
|
|
EOF
|
2023-08-16 12:56:17 +00:00
|
|
|
cd /opt/homarr
|
2023-11-11 18:03:35 +00:00
|
|
|
$STD yarn install
|
|
|
|
$STD yarn build
|
2023-11-11 17:08:31 +00:00
|
|
|
$STD yarn db:migrate
|
2024-11-08 10:34:07 +00:00
|
|
|
echo "${RELEASE}" >"/opt/${APPLICATION}_version.txt"
|
2023-08-16 12:56:17 +00:00
|
|
|
msg_ok "Installed Homarr"
|
|
|
|
|
|
|
|
msg_info "Creating Service"
|
|
|
|
cat <<EOF >/etc/systemd/system/homarr.service
|
|
|
|
[Unit]
|
|
|
|
Description=Homarr Service
|
|
|
|
After=network.target
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=exec
|
|
|
|
WorkingDirectory=/opt/homarr
|
2023-09-25 09:17:51 +00:00
|
|
|
EnvironmentFile=-/opt/homarr/.env
|
2023-08-16 12:56:17 +00:00
|
|
|
ExecStart=/usr/bin/yarn start
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|
|
|
|
EOF
|
|
|
|
systemctl enable -q --now homarr.service
|
|
|
|
msg_ok "Created Service"
|
|
|
|
|
|
|
|
motd_ssh
|
|
|
|
customize
|
|
|
|
|
|
|
|
msg_info "Cleaning up"
|
2024-05-02 17:26:16 +00:00
|
|
|
$STD apt-get -y autoremove
|
|
|
|
$STD apt-get -y autoclean
|
2023-08-16 12:56:17 +00:00
|
|
|
msg_ok "Cleaned"
|