This commit is contained in:
GuikiPT 2023-01-20 09:37:44 +00:00 committed by GitHub
commit 4f3197654b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 64 additions and 52 deletions

3
14.0/build.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
docker build -t guikipt/odoo14 .

View File

@ -19,7 +19,7 @@ function check_config() {
value="$2"
if grep -q -E "^\s*\b${param}\b\s*=" "$ODOO_RC"; then
value=$(grep -E "^\s*\b${param}\b\s*=" "$ODOO_RC" | cut -d " " -f3 | sed 's/["\n\r]//g')
fi;
fi
DB_ARGS+=("--${param}")
DB_ARGS+=("${value}")
}
@ -44,6 +44,7 @@ case "$1" in
;;
*)
exec "$@"
;;
esac
exit 1

3
15.0/build.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
docker build -t guikipt/odoo15 .

View File

@ -19,7 +19,7 @@ function check_config() {
value="$2"
if grep -q -E "^\s*\b${param}\b\s*=" "$ODOO_RC"; then
value=$(grep -E "^\s*\b${param}\b\s*=" "$ODOO_RC" | cut -d " " -f3 | sed 's/["\n\r]//g')
fi;
fi
DB_ARGS+=("--${param}")
DB_ARGS+=("${value}")
}
@ -44,6 +44,7 @@ case "$1" in
;;
*)
exec "$@"
;;
esac
exit 1

3
16.0/build.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
docker build -t guikipt/odoo16 .

View File

@ -19,7 +19,7 @@ function check_config() {
value="$2"
if grep -q -E "^\s*\b${param}\b\s*=" "$ODOO_RC"; then
value=$(grep -E "^\s*\b${param}\b\s*=" "$ODOO_RC" | cut -d " " -f3 | sed 's/["\n\r]//g')
fi;
fi
DB_ARGS+=("--${param}")
DB_ARGS+=("${value}")
}
@ -44,6 +44,7 @@ case "$1" in
;;
*)
exec "$@"
;;
esac
exit 1

View File

@ -1,4 +1,4 @@
About this Repo
Customized Odoo Dockerfile for GuikiPT Projects
======
This is the Git repo of the official Docker image for [Odoo](https://registry.hub.docker.com/_/odoo/). See the Hub page for the full readme on how to use the Docker image and for information regarding contributing and issues.