diff --git a/iotbox/Dockerfile b/iotbox/Dockerfile index 5e734f2..793824c 100644 --- a/iotbox/Dockerfile +++ b/iotbox/Dockerfile @@ -70,7 +70,9 @@ COPY odoo.conf /etc/odoo/odoo.conf ## Get pos-addons for pos_printer_network RUN git clone --depth=1 -b 12.0 https://github.com/it-projects-llc/pos-addons.git \ - /opt/posbox/addons + /opt/posbox/addons \ + && git clone --depth=1 -b 12.0 https://github.com/camptocamp/odoo-cloud-platform.git \ + /opt/posbox/cloud-addons ## Apply some patches COPY patches/*.patch /tmp/ diff --git a/iotbox/odoo.conf b/iotbox/odoo.conf index b28119f..3e6f971 100644 --- a/iotbox/odoo.conf +++ b/iotbox/odoo.conf @@ -1,4 +1,4 @@ [options] -addons_path = /mnt/extra-addons,/opt/posbox/addons +addons_path = /mnt/extra-addons,/opt/posbox/addons,/opt/posbox/cloud-addons data_dir = /var/lib/odoo admin_passwd = S3Cur3Passw0rd diff --git a/odoo/Dockerfile b/odoo/Dockerfile index d72d906..5d5c068 100644 --- a/odoo/Dockerfile +++ b/odoo/Dockerfile @@ -7,7 +7,9 @@ RUN set -x; apt-get update \ && apt-get -y install --no-install-recommends git \ && rm -rf /var/lib/apt/lists/* \ && git clone --depth=1 -b 12.0 https://github.com/it-projects-llc/pos-addons.git \ - /opt/posbox/pos-addons + /opt/posbox/pos-addons \ + && git clone --depth=1 -b 12.0 https://github.com/camptocamp/odoo-cloud-platform.git \ + /opt/posbox/cloud-addons COPY odoo.conf /etc/odoo/odoo.conf COPY addons/ /opt/posbox/extra-addons diff --git a/odoo/odoo.conf b/odoo/odoo.conf index 3be6e24..5bd84a0 100644 --- a/odoo/odoo.conf +++ b/odoo/odoo.conf @@ -1,4 +1,4 @@ [options] -addons_path = /opt/posbox/pos-addons,/opt/posbox/extra-addons +addons_path = /opt/posbox/pos-addons,/opt/posbox/extra-addons,/opt/posbox/cloud-addons data_dir = /var/lib/odoo admin_passwd = S3Cur3Passw0rd