build.sh: added script to build docker container images.
This commit is contained in:
parent
23abdcb305
commit
dd3e751a64
29
build.sh
Executable file
29
build.sh
Executable file
@ -0,0 +1,29 @@
|
||||
#!/bin/bash
|
||||
# #####
|
||||
#
|
||||
# Build Odoo 8.0/9.0/10.0 base+release docker container images.
|
||||
#
|
||||
# author: Pedro Salgado <steenzout@ymail.com>
|
||||
# version: 1.0
|
||||
#
|
||||
# #####
|
||||
|
||||
for ODOO_VERSION in 9.0
|
||||
do
|
||||
|
||||
echo "building steenzout/odoo:${ODOO_VERSION}-base..."
|
||||
docker build -t "steenzout/odoo:${ODOO_VERSION}-base" -f "${ODOO_VERSION}/base/Dockerfile" .
|
||||
|
||||
for line in `cat "${ODOO_VERSION}/releases.txt"`
|
||||
do
|
||||
|
||||
IFS=':' read -a line_array <<< "$line"
|
||||
ODOO_RELEASE="${line_array[0]}"
|
||||
ODOO_SHA1SUM="${line_array[1]}"
|
||||
|
||||
echo "building steenzout/odoo:${ODOO_VERSION}.${ODOO_RELEASE}..."
|
||||
|
||||
docker build -t "steenzout/odoo:${ODOO_VERSION}.${ODOO_RELEASE}" -f "${ODOO_VERSION}/${ODOO_RELEASE}/Dockerfile" .
|
||||
|
||||
done
|
||||
done
|
Loading…
Reference in New Issue
Block a user