Files
ProxmoxVE/install/umbrel-install.sh
T

32 lines
747 B
Bash
Raw Normal View History

2023-03-22 20:48:20 -04:00
#!/usr/bin/env bash
# Copyright (c) 2021-2025 tteck
2023-03-22 20:48:20 -04:00
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://umbrel.com/
2023-03-22 20:48:20 -04:00
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
2023-03-22 20:48:20 -04:00
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
msg_info "Installing Umbrel (Patience)"
DOCKER_CONFIG_PATH='/etc/docker/daemon.json'
mkdir -p $(dirname $DOCKER_CONFIG_PATH)
echo -e '{\n "log-driver": "journald"\n}' >/etc/docker/daemon.json
2023-03-22 20:48:20 -04:00
$STD bash <(curl -fsSL https://umbrel.sh)
systemctl daemon-reload
2025-04-01 20:22:40 +02:00
$STD systemctl enable --now umbrel-startup
2023-03-22 20:48:20 -04:00
msg_ok "Installed Umbrel"
motd_ssh
2023-05-15 07:39:30 -04:00
customize
2023-03-22 20:48:20 -04:00
msg_info "Cleaning up"
$STD apt-get autoremove
$STD apt-get autoclean
2023-03-22 20:48:20 -04:00
msg_ok "Cleaned"