From 4076e425dd1328706fbcd405b43b6bbf613c0a12 Mon Sep 17 00:00:00 2001 From: Pedro Salgado Date: Fri, 30 Dec 2016 19:55:13 -0700 Subject: [PATCH] HOWTO.md: updated instructions. --- HOWTO.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/HOWTO.md b/HOWTO.md index e2c3a24..119d8f1 100644 --- a/HOWTO.md +++ b/HOWTO.md @@ -15,12 +15,24 @@ help you generate docker container images. grab the available releases and SHA1 checksum and rebuild the `${ODOO_VERSION}/releases.txt`. -`generate.sh ` will read the `${ODOO_VERSION}/releases.txt` file, +```bash +# all +$ bash generate_releases.sh + +# single release +$ bash generate_releases.sh 20161230 +``` + +`generate.sh` will read the `${ODOO_VERSION}/releases.txt` file, parse the `release:checksum` lines and generate the `${ODOO_VERSION}/${ODOO_RELEASE}/Dockerfile`. ```bash +# all $ bash generate.sh + +# single release +$ bash generate.sh 20161230 ``` `build.sh` is used to build the docker container images locally.