fixed docker upgrades

This commit is contained in:
Yhael S
2024-08-24 18:20:39 -06:00
parent 0b31913315
commit 9a49d0a425
4 changed files with 5 additions and 5 deletions

View File

@@ -157,7 +157,7 @@ MINIO_TAG=latest
NGINX_TAG=1.25.3 NGINX_TAG=1.25.3
NGINX_PROXY_TAG=1.4.0 NGINX_PROXY_TAG=1.4.0
ACME_COMPANION_TAG=2.2.9 ACME_COMPANION_TAG=2.2.9
PGADMIN_TAG=8.10 PGADMIN_TAG=8.11
# Odoocker paths # Odoocker paths
COMMUNITY_ADDONS=${ROOT_PATH}/addons COMMUNITY_ADDONS=${ROOT_PATH}/addons

View File

@@ -1,8 +1,7 @@
#------------------------# #------------------------#
# Odoo Community # # Odoo Community #
#------------------------# #------------------------#
ARG ODOO_TAG FROM odoo:17.0
FROM odoo:${ODOO_TAG}
# Switch to root user # Switch to root user
USER root USER root

View File

@@ -82,6 +82,8 @@ expand_env_vars() {
done <<< "$1" done <<< "$1"
} }
mkdir -p ${THIRD_PARTY_ADDONS}
# Read the configuration file and process each line # Read the configuration file and process each line
while IFS= read -r line; do while IFS= read -r line; do
mkdir -p ${ENTERPRISE_ADDONS} mkdir -p ${ENTERPRISE_ADDONS}

View File

@@ -1,5 +1,4 @@
ARG POSTGRES_TAG FROM postgres:16.4
FROM postgres:${POSTGRES_TAG}
#------------------------# #------------------------#
# APT Dependencies # # APT Dependencies #