From 6e12a6494782a2aec83346cae9c77d971b0d73b3 Mon Sep 17 00:00:00 2001 From: Aaron Bohy Date: Thu, 8 Oct 2015 11:21:13 +0200 Subject: [PATCH] [ADD] Odoo 9.0 Closes #32. --- 9.0/Dockerfile | 52 +++++++++++++++++++++++++++++++++++++++++ 9.0/entrypoint.sh | 24 +++++++++++++++++++ 9.0/openerp-server.conf | 38 ++++++++++++++++++++++++++++++ 3 files changed, 114 insertions(+) create mode 100644 9.0/Dockerfile create mode 100755 9.0/entrypoint.sh create mode 100644 9.0/openerp-server.conf diff --git a/9.0/Dockerfile b/9.0/Dockerfile new file mode 100644 index 0000000..792a880 --- /dev/null +++ b/9.0/Dockerfile @@ -0,0 +1,52 @@ +FROM debian:jessie +MAINTAINER Odoo S.A. + +# Install some deps, lessc and less-plugin-clean-css, and wkhtmltopdf +RUN set -x; \ + apt-get update \ + && apt-get install -y --no-install-recommends \ + ca-certificates \ + curl \ + node-less \ + node-clean-css \ + python-pyinotify \ + python-renderpm \ + python-support \ + && curl -o wkhtmltox.deb -SL http://nightly.odoo.com/extra/wkhtmltox-0.12.1.2_linux-jessie-amd64.deb \ + && echo '40e8b906de658a2221b15e4e8cd82565a47d7ee8 wkhtmltox.deb' | sha1sum -c - \ + && dpkg --force-depends -i wkhtmltox.deb \ + && apt-get -y install -f --no-install-recommends \ + && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -o APT::AutoRemove::SuggestsImportant=false npm \ + && rm -rf /var/lib/apt/lists/* wkhtmltox.deb + +# Install Odoo +ENV ODOO_VERSION 9.0 +ENV ODOO_RELEASE 20151008 +RUN set -x; \ + curl -o odoo.deb -SL http://nightly.odoo.com/${ODOO_VERSION}/nightly/deb/odoo_${ODOO_VERSION}.${ODOO_RELEASE}_all.deb \ + && dpkg --force-depends -i odoo.deb \ + && apt-get update \ + && apt-get -y install -f --no-install-recommends \ + && rm -rf /var/lib/apt/lists/* odoo.deb + +# Copy entrypoint script and Odoo configuration file +COPY ./entrypoint.sh / +COPY ./openerp-server.conf /etc/odoo/ +RUN chown odoo /etc/odoo/openerp-server.conf + +# Mount /var/lib/odoo to allow restoring filestore and /mnt/extra-addons for users addons +RUN mkdir -p /mnt/extra-addons \ + && chown -R odoo /mnt/extra-addons +VOLUME ["/var/lib/odoo", "/mnt/extra-addons"] + +# Expose Odoo services +EXPOSE 8069 8071 + +# Set the default config file +ENV OPENERP_SERVER /etc/odoo/openerp-server.conf + +# Set default user when running the container +USER odoo + +ENTRYPOINT ["/entrypoint.sh"] +CMD ["openerp-server"] diff --git a/9.0/entrypoint.sh b/9.0/entrypoint.sh new file mode 100755 index 0000000..8ec01b4 --- /dev/null +++ b/9.0/entrypoint.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +set -e + +# set odoo database host, port, user and password +: ${PGHOST:=$DB_PORT_5432_TCP_ADDR} +: ${PGPORT:=$DB_PORT_5432_TCP_PORT} +: ${PGUSER:=${DB_ENV_POSTGRES_USER:='postgres'}} +: ${PGPASSWORD:=$DB_ENV_POSTGRES_PASSWORD} +export PGHOST PGPORT PGUSER PGPASSWORD + +case "$1" in + --) + shift + exec openerp-server "$@" + ;; + -*) + exec openerp-server "$@" + ;; + *) + exec "$@" +esac + +exit 1 diff --git a/9.0/openerp-server.conf b/9.0/openerp-server.conf new file mode 100644 index 0000000..0a1a0ed --- /dev/null +++ b/9.0/openerp-server.conf @@ -0,0 +1,38 @@ +[options] +addons_path = /mnt/extra-addons,/usr/lib/python2.7/dist-packages/openerp/addons +data_dir = /var/lib/odoo +auto_reload = True +; 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