From 9a49d0a4252dc80a750a8b9e5a16712c567e75bd Mon Sep 17 00:00:00 2001 From: Yhael S Date: Sat, 24 Aug 2024 18:20:39 -0600 Subject: [PATCH] fixed docker upgrades --- .env.example | 2 +- odoo/Dockerfile | 3 +-- odoo/clone-addons.sh | 2 ++ postgres/Dockerfile | 3 +-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.env.example b/.env.example index 577f733..7f79a47 100644 --- a/.env.example +++ b/.env.example @@ -157,7 +157,7 @@ MINIO_TAG=latest NGINX_TAG=1.25.3 NGINX_PROXY_TAG=1.4.0 ACME_COMPANION_TAG=2.2.9 -PGADMIN_TAG=8.10 +PGADMIN_TAG=8.11 # Odoocker paths COMMUNITY_ADDONS=${ROOT_PATH}/addons diff --git a/odoo/Dockerfile b/odoo/Dockerfile index e98d930..fc05dcf 100644 --- a/odoo/Dockerfile +++ b/odoo/Dockerfile @@ -1,8 +1,7 @@ #------------------------# # Odoo Community # #------------------------# -ARG ODOO_TAG -FROM odoo:${ODOO_TAG} +FROM odoo:17.0 # Switch to root user USER root diff --git a/odoo/clone-addons.sh b/odoo/clone-addons.sh index 6fb577b..4143ca0 100755 --- a/odoo/clone-addons.sh +++ b/odoo/clone-addons.sh @@ -82,6 +82,8 @@ expand_env_vars() { done <<< "$1" } +mkdir -p ${THIRD_PARTY_ADDONS} + # Read the configuration file and process each line while IFS= read -r line; do mkdir -p ${ENTERPRISE_ADDONS} diff --git a/postgres/Dockerfile b/postgres/Dockerfile index 3eb39ed..763fea1 100644 --- a/postgres/Dockerfile +++ b/postgres/Dockerfile @@ -1,5 +1,4 @@ -ARG POSTGRES_TAG -FROM postgres:${POSTGRES_TAG} +FROM postgres:16.4 #------------------------# # APT Dependencies #