docker-odoo-project
docker-odoo-project copied to clipboard
Base images for Odoo projects
this is for reference on using on M1 style arm to amd64 and was the only change needed. I see there may be a some thing that are not in...
Fixes #162 #89 Before this PR: ``` # file: 000_set_base_url user::rwx group::rwx other::r-x # file: 001_set_report_url user::rw- group::rw- other::r-- ``` With this PR: ``` # file: 000_set_base_url user::rwx group::rwx other::r-x...
switched on a fork of dockerize (more active and publish arm builds) added a missing dependency when building on arm.
In the continuity of https://github.com/camptocamp/docker-odoo-project/pull/160
This is not efficient. On large projects installing local-src can easily take at least a minute or two. IMO they should be installed and tested at the same time, basically...
Are we interested in promoting a tag for python 3.8 to the docker images? We starting to see the need with some python modules. I was not sure how to...
Based on @pniederlag 's PR (GH-90) that fixes #89. He only missed a parameter from `chmod`. If it's easier to fix and merge that then do it. My goal is...
WORK IN PROGRESS you can typically test it with: ``` docker run --name some-postgres -e POSTGRES_PASSWORD=odoo -e POSTGRES_USER=odoo -d postgres:9.6.1 docker run -v /root/aflex-tests/odoo:/opt/odoo -e MIGRATE=False -e ADDONS_PATH=/opt/odoo/src/addons --link some-postgres:db...
When a database is created by the container's entrypoint, it uses the default collation that will be en_US.utf8. As discussed here: https://github.com/odoo/odoo/pull/25196#issuecomment-396683972, this may be under-optimized with the use of...