We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 422bb0a commit f690a74Copy full SHA for f690a74
ct/ghost.sh
@@ -24,7 +24,11 @@ function update_script() {
24
check_container_storage
25
check_container_resources
26
27
+ if ! dpkg-query -W -f='${Status}' mariadb-server 2>/dev/null | grep -q "install ok installed"; then
28
+ setup_mysql
29
+ fi
30
NODE_VERSION="22" setup_nodejs
31
+
32
msg_info "Updating ${APP} LXC"
33
if command -v ghost &>/dev/null; then
34
current_version=$(ghost version | grep 'Ghost-CLI version' | awk '{print $3}')
install/ghost-install.sh
@@ -16,7 +16,8 @@ update_os
16
msg_info "Installing Dependencies"
17
$STD apt-get install -y \
18
nginx \
19
- ca-certificates
+ ca-certificates \
20
+ libjemalloc2
21
msg_ok "Installed Dependencies"
22
23
setup_mysql
0 commit comments