mirror of
https://github.com/YunoHost-Apps/ofbiz_ynh.git
synced 2024-09-03 19:46:33 +02:00
commit
a3dce8e785
1 changed files with 9 additions and 2 deletions
|
@ -51,7 +51,14 @@ ram.runtime = "50M"
|
|||
main.allowed = "admins"
|
||||
|
||||
[resources.apt]
|
||||
packages = ["openjdk-11-jdk", "postgresql"]
|
||||
packages = [ "postgresql"]
|
||||
packages_from_raw_bash = """
|
||||
if [[ $YNH_DEBIAN_VERSION == "bullseye" ]]; then
|
||||
echo "openjdk-11-jre";
|
||||
elif [[ $YNH_DEBIAN_VERSION == "bookworm" ]]; then
|
||||
echo "openjdk-17-jre";
|
||||
fi
|
||||
"""
|
||||
|
||||
[resources.database]
|
||||
type = "postgresql"
|
||||
|
|
Loading…
Reference in a new issue