3 Commits
main ... 17.0

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
ODOO_TAG=17.0
POSTGRES_TAG=16.1
POSTGRES_TAG=16.4
KEYDB_TAG=latest
MINIO_TAG=latest
NGINX_TAG=1.25.3
NGINX_PROXY_TAG=1.4.0
ACME_COMPANION_TAG=2.2.9
PGADMIN_TAG=8.1
PGADMIN_TAG=8.11
# Odoocker paths
COMMUNITY_ADDONS=${ROOT_PATH}/addons

3
.gitignore vendored
View File

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

View File

@@ -1,8 +1,7 @@
#------------------------#
# Odoo Community #
#------------------------#
ARG ODOO_TAG
FROM odoo:${ODOO_TAG}
FROM odoo:17.0
# Switch to root user
USER root
@@ -49,6 +48,7 @@ RUN apt-get update && apt-get install -y \
# `zip` and `unzip` for filestore management
zip \
unzip \
rsync \
# `git` required packages
git \
git-man \

View File

@@ -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}

View File

@@ -6,7 +6,7 @@
Goes Here
''',
'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',
'sequence': 100, # Order in which the module will be displayed
# Author, Pricing, Licensing, and Support Info

View File

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