From 4f7424b1ef0ea3b173abb6fbf1e12cf059375b65 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?R=C3=A9mi=20-=20Le=20Filament?= <remi@le-filament.com>
Date: Mon, 2 Aug 2021 09:50:44 +0200
Subject: [PATCH] [IMP] Update for v10 modules

---
 README.md | 48 ++++++++++++++++--------------------------------
 1 file changed, 16 insertions(+), 32 deletions(-)

diff --git a/README.md b/README.md
index 101e22e..79c7c45 100644
--- a/README.md
+++ b/README.md
@@ -6,58 +6,42 @@ These docker images are now maintained on [Le Filament GitLab server](https://so
 
 This Docker is inspired from the ones from [Odoo](https://github.com/odoo/docker), [Tecnativa](https://github.com/Tecnativa/doodba) and [Elico Corporation](https://github.com/Elico-Corp/odoo-docker).
 
-It creates a functional Odoo Docker of limited size (< 400 MB), including Odoo 10.0 or 12.0 from [OCA/OCB](https://github.com/oca/ocb), and also a few addons from [OCA](https://github.com/oca).
+It creates a functional Odoo Docker of limited size (< 400 MB), including Odoo 10.0 or 12.0 or 14.0 from [OCA/OCB](https://github.com/oca/ocb), and also a few addons from [OCA](https://github.com/oca).
 
 In order to reduce as much as possible the size of the Docker, only French translations are kept and .git directories are removed.
 For people needing other languages than English or French, a 12.0_ml image is also provided.
 Also, some extra modules may need python 3.6 for Odoo v12 (python 3.5 by default on 12.0 image), therefore a specific 12.0_py3.6 has been created.
 
-The following OCA addons are included by default in this image (in v14.0):
+The following OCA addons are included by default in this image (in v10.0):
 ```yaml
   - repo: account-financial-reporting
     modules:
      - account_tax_balance
-  - repo: account-financial-tools
-    modules:
-     - account_lock_date_update
-  # Not yet approved PR on v14
-  #- repo: account-invoicing
-  #  modules:
-  #   - sale_timesheet_invoice_description
   - repo: bank-statement-import
     modules:
      - account_bank_statement_import_ofx
+     - account_bank_statement_import_qif
+  - repo: knowledge
+     - document_page
+     - knowledge
   - repo: partner-contact
     modules:
      - partner_disable_gravatar
      - partner_firstname
-  - repo: project
-    modules:
-     - project_category
-     - project_status
-     - project_task_default_stage
-     - project_template
-     - project_timeline
-  - repo: server-auth
-    modules:
-     - password_security
-  - repo: server-brand
-    modules:
-     - disable_odoo_online
-     - portal_odoo_debranding
-     - remove_odoo_enterprise
-  - repo: server-ux
+  - repo: server-tools
     modules:
-     - base_technical_features
+     - auth_brute_force
+     - auth_session_timeout
      - date_range
-     - mass_editing
+     - password_security
   - repo: social
     modules:
-     - base_search_mail_content
      - mail_debrand
+     - mail_restrict_follower_selection
   - repo: web
     modules:
      - web_environment_ribbon
+     - web_export_view
      - web_responsive
      - web_timeline
 ```
@@ -83,8 +67,8 @@ docker-compose example is provided below:
 version: "2.1"
 services:
     odoo:
-        image: lefilament/odoo:14.0
-        container_name: odoo14
+        image: lefilament/odoo:10.0
+        container_name: odoo10
         depends_on:
             - db
         tty: true
@@ -95,8 +79,8 @@ services:
             - odoo
 
     db:
-        image: postgres:13-alpine
-        container_name: odoo14_db
+        image: postgres:9.6-alpine
+        container_name: odoo10_db
         environment:
             POSTGRES_USER: "odoo"
             POSTGRES_PASSWORD: "odoo"
-- 
GitLab