Omer Alobaidi
Omer Alobaidi
Thank you @kovacs-andras for your feedback. actually. I tried to run an official Odoo docker container in Kubernetes but it didn't work, I am still new to this stuff, so...
That's right. What I already tried, I made two odoo containers with one postgres container, I connected them to it, the problem was, they couldn't read each other's database, I...
Sure, I like to help and learn, I will be happy to join the group. I think we can use Jenkins to create a pipeline to build the image and...
Thank you @codeagencybe, I will check that.
I personally faced this problem of session interruptions, and error in loading for a strict environment. One of the reasons was opening two different Odoo servers on the same browser,...
Could you recommend a document about Odoo security and architecture, please? we still have a gap to make the right decision about containerization design.
I managed to solve the issue, in the file: /venv/lib/python3.6/site-packages/rest_auth/registration/urls.py add ` from allauth.account.views import confirm_email ` ` #url(r'^account-confirm-email/(?P[-:\w]+)/$', TemplateView.as_view(template_name='empty.html'), name='account_confirm_email'), ` ` url(r"^account-confirm-email/(?P[\s\d\w().+-_',:&]+)/$", confirm_email, name="account_confirm_email"), ` and you don't...