From ba4c08545364d16f88487136966389a312ad6a9c Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Fri, 13 Dec 2019 14:56:18 +0100 Subject: [PATCH] chg: doc: [README.org] use public image in ``compose.yml`` and give more examples Signed-off-by: Valentin Lab --- README.org | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/README.org b/README.org index 15008ae..0fde345 100644 --- a/README.org +++ b/README.org @@ -119,19 +119,23 @@ the =-f COMPOSEFILE= option. Here's a good start: cat < compose.yml odoo: charm: odoo-tecnativa - # docker-compose: - # ## Important to keep as a list: otherwise it'll overwrite charm's arguments. - # command: - # - "--log-level=debug" - # environment: - # TOTO: TATA - # image: mynewimage - # options: - # workers: 1 - # modules: ## 'base' is automatically added - # - l10n_fr - # - mymodule - # database: mybase ## defaults to database in relation + docker-compose: + image: docker.0k.io/mirror/odoo:rc_13.0-MYC-INIT + ## Important to keep as a list: otherwise it'll overwrite charm's arguments. + #command: + # - "--log-level=debug" + #environment: + # TOTO: TATA + #options: + # workers: 1 + # modules: ## 'base' is automatically added + # - l10n_fr + # - mymodule + # database: mybase ## defaults to database in relation + # ## Odoo configuration file + # conf: + # options: + # email_from: me@example.com EOF #+END_SRC