mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-11-03 18:02:50 +00:00
* 'Add new script' * add alpine-garage-install.sh * add alpine-garage.sh * Update alpine-garage.sh * Update garage-install.sh * Increase default RAM and disk for Garage containers Updated ct/garage.sh and ct/alpine-garage.sh to set higher default RAM (1024MB for Garage, 512MB for Alpine-Garage) and disk (5GB for both). Synced these resource changes in frontend/public/json/garage.json to ensure consistency in container setup defaults. * Apply suggestion from @tremor021 --------- Co-authored-by: push-app-to-main[bot] <203845782+push-app-to-main[bot]@users.noreply.github.com> Co-authored-by: CanbiZ <47820557+MickLesk@users.noreply.github.com> Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com>
85 lines
2.0 KiB
Bash
85 lines
2.0 KiB
Bash
#!/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://garagehq.deuxfleurs.fr/
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
msg_info "Installing Dependencies"
|
|
$STD apk add --no-cache openssl
|
|
msg_ok "Installed Dependencies"
|
|
|
|
GITEA_RELEASE=$(curl -s https://api.github.com/repos/deuxfleurs-org/garage/tags | jq -r '.[0].name')
|
|
curl -fsSL "https://garagehq.deuxfleurs.fr/_releases/${GITEA_RELEASE}/x86_64-unknown-linux-musl/garage" -o /usr/local/bin/garage
|
|
chmod +x /usr/local/bin/garage
|
|
mkdir -p /var/lib/garage/{data,meta,snapshots}
|
|
mkdir -p /etc/garage
|
|
RPC_SECRET=$(openssl rand -hex 64 | cut -c1-64)
|
|
ADMIN_TOKEN=$(openssl rand -base64 32)
|
|
METRICS_TOKEN=$(openssl rand -base64 32)
|
|
{
|
|
echo "Garage Tokens and Secrets"
|
|
echo "RPC Secret: $RPC_SECRET"
|
|
echo "Admin Token: $ADMIN_TOKEN"
|
|
echo "Metrics Token: $METRICS_TOKEN"
|
|
} >~/garage.creds
|
|
echo $GITEA_RELEASE >>~/.garage
|
|
cat <<EOF >/etc/garage.toml
|
|
metadata_dir = "/var/lib/garage/meta"
|
|
data_dir = "/var/lib/garage/data"
|
|
db_engine = "sqlite"
|
|
replication_factor = 1
|
|
|
|
rpc_bind_addr = "0.0.0.0:3901"
|
|
rpc_public_addr = "127.0.0.1:3901"
|
|
rpc_secret = "${RPC_SECRET}"
|
|
|
|
[s3_api]
|
|
s3_region = "garage"
|
|
api_bind_addr = "0.0.0.0:3900"
|
|
root_domain = ".s3.garage"
|
|
|
|
[s3_web]
|
|
bind_addr = "0.0.0.0:3902"
|
|
root_domain = ".web.garage"
|
|
index = "index.html"
|
|
|
|
[k2v_api]
|
|
api_bind_addr = "0.0.0.0:3904"
|
|
|
|
[admin]
|
|
api_bind_addr = "0.0.0.0:3903"
|
|
admin_token = "${ADMIN_TOKEN}"
|
|
metrics_token = "${METRICS_TOKEN}"
|
|
EOF
|
|
msg_ok "Configured Garage"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<'EOF' >/etc/init.d/garage
|
|
#!/sbin/openrc-run
|
|
name="Garage Object Storage"
|
|
command="/usr/local/bin/garage"
|
|
command_args="server"
|
|
command_background="yes"
|
|
pidfile="/run/garage.pid"
|
|
depend() {
|
|
need net
|
|
}
|
|
EOF
|
|
|
|
chmod +x /etc/init.d/garage
|
|
$STD rc-update add garage default
|
|
$STD rc-service garage restart || rc-service garage start
|
|
msg_ok "Service active"
|
|
|
|
motd_ssh
|
|
customize
|