forked from odoo/docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A temporary fix was added to install gsfonts and python3-openssl. They will be removed once the Odoo deb package is fixed and merged.
- Loading branch information
Showing
4 changed files
with
210 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
FROM debian:bullseye-slim | ||
MAINTAINER Odoo S.A. <[email protected]> | ||
|
||
SHELL ["/bin/bash", "-xo", "pipefail", "-c"] | ||
|
||
# Generate locale C.UTF-8 for postgres and general locale data | ||
ENV LANG C.UTF-8 | ||
|
||
# Install some deps, lessc and less-plugin-clean-css, and wkhtmltopdf | ||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
ca-certificates \ | ||
curl \ | ||
dirmngr \ | ||
fonts-noto-cjk \ | ||
gnupg \ | ||
# TO REEMOVE WHEN PACKAGED | ||
gsfonts \ | ||
libssl-dev \ | ||
node-less \ | ||
npm \ | ||
python3-num2words \ | ||
python3-pdfminer \ | ||
python3-pip \ | ||
python3-phonenumbers \ | ||
python3-pyldap \ | ||
# TO REMOVE WHEN PACKAGED | ||
python3-openssl \ | ||
python3-qrcode \ | ||
python3-renderpm \ | ||
python3-setuptools \ | ||
python3-slugify \ | ||
python3-vobject \ | ||
python3-watchdog \ | ||
python3-xlrd \ | ||
python3-xlwt \ | ||
xz-utils \ | ||
&& curl -o wkhtmltox.deb -sSL https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.buster_amd64.deb \ | ||
&& echo 'ea8277df4297afc507c61122f3c349af142f31e5 wkhtmltox.deb' | sha1sum -c - \ | ||
&& apt-get install -y --no-install-recommends ./wkhtmltox.deb \ | ||
&& rm -rf /var/lib/apt/lists/* wkhtmltox.deb | ||
|
||
# install latest postgresql-client | ||
RUN echo 'deb http://apt.postgresql.org/pub/repos/apt/ bullseye-pgdg main' > /etc/apt/sources.list.d/pgdg.list \ | ||
&& GNUPGHOME="$(mktemp -d)" \ | ||
&& export GNUPGHOME \ | ||
&& repokey='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8' \ | ||
&& gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "${repokey}" \ | ||
&& gpg --batch --armor --export "${repokey}" > /etc/apt/trusted.gpg.d/pgdg.gpg.asc \ | ||
&& gpgconf --kill all \ | ||
&& rm -rf "$GNUPGHOME" \ | ||
&& apt-get update \ | ||
&& apt-get install --no-install-recommends -y postgresql-client \ | ||
&& rm -f /etc/apt/sources.list.d/pgdg.list \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Install rtlcss (on Debian buster) | ||
RUN npm install -g rtlcss | ||
|
||
# Install Odoo | ||
ENV ODOO_VERSION 15.0 | ||
ARG ODOO_RELEASE=20211007 | ||
ARG ODOO_SHA=aee026f813f334400aa49dc857d4043719f8f395 | ||
RUN curl -o odoo.deb -sSL http://nightly.odoo.com/${ODOO_VERSION}/nightly/deb/odoo_${ODOO_VERSION}.${ODOO_RELEASE}_all.deb \ | ||
&& echo "${ODOO_SHA} odoo.deb" | sha1sum -c - \ | ||
&& apt-get update \ | ||
&& apt-get -y install --no-install-recommends ./odoo.deb \ | ||
&& rm -rf /var/lib/apt/lists/* odoo.deb | ||
|
||
# Copy entrypoint script and Odoo configuration file | ||
COPY ./entrypoint.sh / | ||
COPY ./odoo.conf /etc/odoo/ | ||
|
||
# Set permissions and Mount /var/lib/odoo to allow restoring filestore and /mnt/extra-addons for users addons | ||
RUN chown odoo /etc/odoo/odoo.conf \ | ||
&& mkdir -p /mnt/extra-addons \ | ||
&& chown -R odoo /mnt/extra-addons | ||
VOLUME ["/var/lib/odoo", "/mnt/extra-addons"] | ||
|
||
# Expose Odoo services | ||
EXPOSE 8069 8071 8072 | ||
|
||
# Set the default config file | ||
ENV ODOO_RC /etc/odoo/odoo.conf | ||
|
||
COPY wait-for-psql.py /usr/local/bin/wait-for-psql.py | ||
|
||
# Set default user when running the container | ||
USER odoo | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] | ||
CMD ["odoo"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
if [ -v PASSWORD_FILE ]; then | ||
PASSWORD="$(< $PASSWORD_FILE)" | ||
fi | ||
|
||
# set the postgres database host, port, user and password according to the environment | ||
# and pass them as arguments to the odoo process if not present in the config file | ||
: ${HOST:=${DB_PORT_5432_TCP_ADDR:='db'}} | ||
: ${PORT:=${DB_PORT_5432_TCP_PORT:=5432}} | ||
: ${USER:=${DB_ENV_POSTGRES_USER:=${POSTGRES_USER:='odoo'}}} | ||
: ${PASSWORD:=${DB_ENV_POSTGRES_PASSWORD:=${POSTGRES_PASSWORD:='odoo'}}} | ||
|
||
DB_ARGS=() | ||
function check_config() { | ||
param="$1" | ||
value="$2" | ||
if grep -q -E "^\s*\b${param}\b\s*=" "$ODOO_RC" ; then | ||
value=$(grep -E "^\s*\b${param}\b\s*=" "$ODOO_RC" |cut -d " " -f3|sed 's/["\n\r]//g') | ||
fi; | ||
DB_ARGS+=("--${param}") | ||
DB_ARGS+=("${value}") | ||
} | ||
check_config "db_host" "$HOST" | ||
check_config "db_port" "$PORT" | ||
check_config "db_user" "$USER" | ||
check_config "db_password" "$PASSWORD" | ||
|
||
case "$1" in | ||
-- | odoo) | ||
shift | ||
if [[ "$1" == "scaffold" ]] ; then | ||
exec odoo "$@" | ||
else | ||
wait-for-psql.py ${DB_ARGS[@]} --timeout=30 | ||
exec odoo "$@" "${DB_ARGS[@]}" | ||
fi | ||
;; | ||
-*) | ||
wait-for-psql.py ${DB_ARGS[@]} --timeout=30 | ||
exec odoo "$@" "${DB_ARGS[@]}" | ||
;; | ||
*) | ||
exec "$@" | ||
esac | ||
|
||
exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[options] | ||
addons_path = /mnt/extra-addons | ||
data_dir = /var/lib/odoo | ||
; admin_passwd = admin | ||
; csv_internal_sep = , | ||
; db_maxconn = 64 | ||
; db_name = False | ||
; db_template = template1 | ||
; dbfilter = .* | ||
; debug_mode = False | ||
; email_from = False | ||
; limit_memory_hard = 2684354560 | ||
; limit_memory_soft = 2147483648 | ||
; limit_request = 8192 | ||
; limit_time_cpu = 60 | ||
; limit_time_real = 120 | ||
; list_db = True | ||
; log_db = False | ||
; log_handler = [':INFO'] | ||
; log_level = info | ||
; logfile = None | ||
; longpolling_port = 8072 | ||
; max_cron_threads = 2 | ||
; osv_memory_age_limit = 1.0 | ||
; osv_memory_count_limit = False | ||
; smtp_password = False | ||
; smtp_port = 25 | ||
; smtp_server = localhost | ||
; smtp_ssl = False | ||
; smtp_user = False | ||
; workers = 0 | ||
; xmlrpc = True | ||
; xmlrpc_interface = | ||
; xmlrpc_port = 8069 | ||
; xmlrpcs = True | ||
; xmlrpcs_interface = | ||
; xmlrpcs_port = 8071 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/env python3 | ||
import argparse | ||
import psycopg2 | ||
import sys | ||
import time | ||
|
||
|
||
if __name__ == '__main__': | ||
arg_parser = argparse.ArgumentParser() | ||
arg_parser.add_argument('--db_host', required=True) | ||
arg_parser.add_argument('--db_port', required=True) | ||
arg_parser.add_argument('--db_user', required=True) | ||
arg_parser.add_argument('--db_password', required=True) | ||
arg_parser.add_argument('--timeout', type=int, default=5) | ||
|
||
args = arg_parser.parse_args() | ||
|
||
start_time = time.time() | ||
while (time.time() - start_time) < args.timeout: | ||
try: | ||
conn = psycopg2.connect(user=args.db_user, host=args.db_host, port=args.db_port, password=args.db_password, dbname='postgres') | ||
error = '' | ||
break | ||
except psycopg2.OperationalError as e: | ||
error = e | ||
else: | ||
conn.close() | ||
time.sleep(1) | ||
|
||
if error: | ||
print("Database connection failure: %s" % error, file=sys.stderr) | ||
sys.exit(1) |