Compare commits

..

26 commits

Author SHA1 Message Date
b281236b47 Skip backup questions if specified 2024-11-23 17:26:12 +01:00
b9e05c784d Create backup whitelist for docker-compose 2024-11-23 16:57:11 +01:00
d1f85e4ba5 Add a profile for the server 2024-11-22 17:31:18 +01:00
ac121a4b61 Add options for enabling docker-compose services 2024-11-22 17:31:08 +01:00
724dc33f28 Add scripts for installing woodpecker 2024-11-22 17:29:45 +01:00
de870feef9 Add scripts for installing wekan 2024-11-22 01:54:50 +01:00
9e275adb68 Add scripts for installing TrackMania server 2024-11-20 00:33:09 +01:00
7a0c771365 Replace yq with go-yq 2024-11-20 00:30:08 +01:00
502db25da2 Add scripts for installing TeamSpeak 2024-11-13 18:18:15 +01:00
7c51405d5a Add scripts for installing ryot 2024-11-13 17:39:21 +01:00
199f08f55a Add scripts for installing nextcloud 2024-11-13 16:25:39 +01:00
a3c80ec6e4 Restructure service overrides 2024-11-13 16:22:57 +01:00
37e679dc93 Add scripts for installing Minecraft 2024-11-10 13:00:23 +01:00
0df5fe4cbf Add settings for allowing VPN access in lxc 2024-11-10 12:56:48 +01:00
442630560e Improve look & feel of lxc config 2024-11-10 12:56:34 +01:00
322a0fbb04 Add scripts for installing jellyfin 2024-11-10 12:33:36 +01:00
1603cd11f0 Add a script for installing forgejo 2024-11-07 23:58:06 +01:00
38ff997490 Add scripts for installing drone 2024-11-07 18:33:16 +01:00
5bd28235f4 Allow configuring services with multiple domains 2024-11-07 11:54:50 +01:00
771716d0c6 Allow specifying domains per service 2024-11-07 03:31:48 +01:00
2523c18dd1 Fetch FQDN from configuration 2024-11-07 03:01:45 +01:00
718014446f Generate nginx config using printf 2024-11-07 02:40:29 +01:00
aed297859e Add a function for initializing the service installation 2024-11-07 02:39:37 +01:00
5bf52a7816 Rename public API 2024-11-06 19:34:27 +01:00
353c16a188 Add /etc/localtime file in test container 2024-11-06 03:33:01 +01:00
45d491bc46 Add a script for installing anki-sync 2024-11-06 03:32:45 +01:00
5 changed files with 8 additions and 8 deletions

View file

@ -91,7 +91,7 @@ begin
end end
function getBackupArgs -V root function getBackupArgs -V root
printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" --exclude "docker-compose.base.yml" "$root" printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" --exclude "docker-compose.base.yml" (getServiceRoot $argv)
end end
runInstaller --force $argv runInstaller --force $argv

View file

@ -138,7 +138,7 @@ begin
end end
function getBackupArgs -V root function getBackupArgs -V root
printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" --exclude "docker-compose.base.yml" "$root" printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" --exclude "docker-compose.base.yml" (getServiceRoot $argv)
end end
runInstaller --force $argv runInstaller --force $argv

View file

@ -65,8 +65,8 @@ begin
function getServiceLocations function getServiceLocations
end end
function getBackupArgs -V root function getBackupArgs
printf "%s\n" --hidden --no-ignore "config|data|mods|worlds|\.properties\$" --exclude "docker-compose.yml" "$root" printf "%s\n" --hidden --no-ignore "config|data|mods|worlds|\.properties\$" --exclude "docker-compose.yml" (getServiceRoot $argv)
end end
runInstaller --force $argv runInstaller --force $argv

View file

@ -40,8 +40,8 @@ begin
function getServiceLocations function getServiceLocations
end end
function getBackupArgs -V root function getBackupArgs
printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" "$root" printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" (getServiceRoot $argv)
end end
runInstaller --force $argv runInstaller --force $argv

View file

@ -37,8 +37,8 @@ begin
printf "%s\0" "$_flag_name" / printf "%s\0" "$_flag_name" /
end end
function getBackupArgs -V root function getBackupArgs
printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" "$root" printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" (getServiceRoot $argv)
end end
runInstaller --force $argv runInstaller --force $argv