From b4779b0e56be7264735dc9bf1bd837dca8f0d89e Mon Sep 17 00:00:00 2001 From: Christophe Monniez Date: Tue, 31 Mar 2020 15:39:25 +0200 Subject: [PATCH] [IMP] Odoo 11.0-13.0: also exports port 8072 Although the `EXPOSE` instruction does not actually publish the ports, it has an impact on inter docker communication. With this commit, port 8072 is also exposed. Closes #107 --- 11.0/Dockerfile | 2 +- 12.0/Dockerfile | 2 +- 13.0/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/11.0/Dockerfile b/11.0/Dockerfile index 6131128..3d3a244 100644 --- a/11.0/Dockerfile +++ b/11.0/Dockerfile @@ -72,7 +72,7 @@ RUN chown odoo /etc/odoo/odoo.conf \ VOLUME ["/var/lib/odoo", "/mnt/extra-addons"] # Expose Odoo services -EXPOSE 8069 8071 +EXPOSE 8069 8071 8072 # Set the default config file ENV ODOO_RC /etc/odoo/odoo.conf diff --git a/12.0/Dockerfile b/12.0/Dockerfile index d180d6a..13510d3 100644 --- a/12.0/Dockerfile +++ b/12.0/Dockerfile @@ -86,7 +86,7 @@ RUN chown odoo /etc/odoo/odoo.conf \ VOLUME ["/var/lib/odoo", "/mnt/extra-addons"] # Expose Odoo services -EXPOSE 8069 8071 +EXPOSE 8069 8071 8072 # Set the default config file ENV ODOO_RC /etc/odoo/odoo.conf diff --git a/13.0/Dockerfile b/13.0/Dockerfile index 8627f22..da31f5d 100644 --- a/13.0/Dockerfile +++ b/13.0/Dockerfile @@ -74,7 +74,7 @@ RUN chown odoo /etc/odoo/odoo.conf \ VOLUME ["/var/lib/odoo", "/mnt/extra-addons"] # Expose Odoo services -EXPOSE 8069 8071 +EXPOSE 8069 8071 8072 # Set the default config file ENV ODOO_RC /etc/odoo/odoo.conf