Increased storage.

This commit is contained in:
Johanna Rührig 2025-01-01 15:43:51 +01:00
parent 65df06aa4c
commit bc4810ef67
2 changed files with 6 additions and 2 deletions

View File

@ -10,7 +10,7 @@ APP="5etools"
TAGS="wiki"
var_cpu="1"
var_ram="512"
var_disk="10"
var_disk="20"
var_os="debian"
var_version="12"
var_unprivileged="1"
@ -50,12 +50,16 @@ function update_script() {
msg_ok "Backup Created"
# Execute Update
msg_info "Setting up 5etools"
wget -q "https://github.com/5etools-mirror-3/5etools-src/archive/refs/tags/${RELEASE}.zip"
unzip -q "${RELEASE}.zip" -d "/opt/${APP}"
rm -rf "${RELEASE}.zip"
msg_ok "Set up 5etools"
msg_info "Setting up 5etools images"
wget -q "https://github.com/5etools-mirror-2/5etools-img/archive/refs/tags/${RELEASE}.zip"
unzip -q "${RELEASE}.zip" -d "/opt/${APP}/img"
rm -rf "${RELEASE}.zip"
msg_info "Set up 5etools images"
chown -R www-data: "/opt/${APP}"
chmod -R 755 "/opt/${APP}"

View File

@ -20,7 +20,7 @@
"resources": {
"cpu": 1,
"ram": 512,
"hdd": 10,
"hdd": 20,
"os": "debian",
"version": "12"
}