mirror of
https://github.com/odoocker/odoocker
synced 2025-11-04 23:29:19 +01:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4f55d789c9 | ||
|
|
9a49d0a425 | ||
|
|
0b31913315 |
@@ -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
3
.gitignore
vendored
@@ -9,3 +9,6 @@ docker-compose.override.yml
|
||||
|
||||
# Ignores any __pycache__ folder.
|
||||
__pycache__
|
||||
|
||||
# Ignores upgrade files
|
||||
upgrade/
|
||||
|
||||
@@ -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 \
|
||||
|
||||
@@ -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}
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
ARG POSTGRES_TAG
|
||||
FROM postgres:${POSTGRES_TAG}
|
||||
FROM postgres:16.4
|
||||
|
||||
#------------------------#
|
||||
# APT Dependencies #
|
||||
|
||||
Reference in New Issue
Block a user