3 Commits

Author SHA1 Message Date
Yhael S
4f55d789c9 cleanup 2024-08-24 18:21:21 -06:00
Yhael S
9a49d0a425 fixed docker upgrades 2024-08-24 18:20:39 -06:00
Yhael S
0b31913315 tiny upgrade 2024-08-09 09:10:21 -06:00
6 changed files with 11 additions and 7 deletions

View File

@@ -151,13 +151,13 @@ PGADMIN_PROFILES="pgadmin"
# Containers' Tags # Containers' Tags
ODOO_TAG=17.0 ODOO_TAG=17.0
POSTGRES_TAG=16.1 POSTGRES_TAG=16.4
KEYDB_TAG=latest KEYDB_TAG=latest
MINIO_TAG=latest 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.1 PGADMIN_TAG=8.11
# Odoocker paths # Odoocker paths
COMMUNITY_ADDONS=${ROOT_PATH}/addons COMMUNITY_ADDONS=${ROOT_PATH}/addons

3
.gitignore vendored
View File

@@ -9,3 +9,6 @@ docker-compose.override.yml
# Ignores any __pycache__ folder. # Ignores any __pycache__ folder.
__pycache__ __pycache__
# Ignores upgrade files
upgrade/

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
@@ -49,6 +48,7 @@ RUN apt-get update && apt-get install -y \
# `zip` and `unzip` for filestore management # `zip` and `unzip` for filestore management
zip \ zip \
unzip \ unzip \
rsync \
# `git` required packages # `git` required packages
git \ git \
git-man \ git-man \

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

@@ -6,7 +6,7 @@
Goes Here Goes Here
''', ''',
'version': '1.0.0', # (X.Y.Z.W) X: Odoo Version (not present), Y: Major Upgrade, Z: Bugfix, W: Minor Upgrade 'version': '1.0.0', # (X.Y.Z.W) X: Odoo Version (not present), Y: Major Upgrade, Z: Bugfix, W: Minor Upgrade
'category': 'Uncategorized', # Possible values: [https://github.com/odoo/odoo/blob/16.0/odoo/addons/base/data/ir_module_category_data.xml] 'category': 'Uncategorized', # Possible values: [https://github.com/odoo/odoo/blob/17.0/odoo/addons/base/data/ir_module_category_data.xml]
'license': 'LGPL-3', 'license': 'LGPL-3',
'sequence': 100, # Order in which the module will be displayed 'sequence': 100, # Order in which the module will be displayed
# Author, Pricing, Licensing, and Support Info # Author, Pricing, Licensing, and Support Info

View File

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