diff --git a/8.0/Dockerfile b/8.0/Dockerfile index 9a69b94..efec7e4 100644 --- a/8.0/Dockerfile +++ b/8.0/Dockerfile @@ -31,15 +31,15 @@ RUN set -x; \ && rm -rf /var/lib/apt/lists/* odoo.deb # Copy entrypoint script and Odoo configuration file -COPY ./entrypoint.sh / -COPY ./openerp-server.conf /etc/odoo/ +COPY ./8.0/entrypoint.sh / +COPY ./8.0/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 VOLUME ["/var/lib/odoo", "/mnt/extra-addons"] # Expose Odoo services -EXPOSE 8069 8071 +EXPOSE 8080 8071 # Set the default config file ENV OPENERP_SERVER /etc/odoo/openerp-server.conf diff --git a/8.0/openerp-server.conf b/8.0/openerp-server.conf index 679610c..986c539 100644 --- a/8.0/openerp-server.conf +++ b/8.0/openerp-server.conf @@ -32,7 +32,7 @@ auto_reload = True ; workers = 0 ; xmlrpc = True ; xmlrpc_interface = -; xmlrpc_port = 8069 +xmlrpc_port = 8080 ; xmlrpcs = True ; xmlrpcs_interface = ; xmlrpcs_port = 8071 diff --git a/Dockerfile b/Dockerfile new file mode 120000 index 0000000..59aba69 --- /dev/null +++ b/Dockerfile @@ -0,0 +1 @@ +8.0/Dockerfile \ No newline at end of file diff --git a/README.md b/README.md index 6799328..4461e85 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,8 @@ About this Repo This is the Git repo of the official Docker image for [Odoo](https://registry.hub.docker.com/_/odoo/). See the Hub page for the full readme on how to use the Docker image and for information regarding contributing and issues. The full readme is generated over in [docker-library/docs](https://github.com/docker-library/docs), specifically in [docker-library/docs/odoo](https://github.com/docker-library/docs/tree/master/odoo). + +This image can also bu used with dokku mini-PaaS as simple as: +``` +dokku clone odoo https://github.com/odoo/docker +```