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