diff --git a/10.0/entrypoint.sh b/10.0/entrypoint.sh index 3878702..9fe792f 100755 --- a/10.0/entrypoint.sh +++ b/10.0/entrypoint.sh @@ -11,7 +11,7 @@ set -e DB_ARGS=("--db_user" $USER "--db_password" $PASSWORD "--db_host" $HOST "--db_port" $PORT) case "$1" in - --) + -- | odoo) shift exec odoo "${DB_ARGS[@]}" "$@" ;; diff --git a/8.0/entrypoint.sh b/8.0/entrypoint.sh index 9765824..50e82bc 100755 --- a/8.0/entrypoint.sh +++ b/8.0/entrypoint.sh @@ -11,7 +11,7 @@ set -e DB_ARGS=("--db_user" $USER "--db_password" $PASSWORD "--db_host" $HOST "--db_port" $PORT) case "$1" in - --) + -- | openerp-server) shift exec openerp-server "${DB_ARGS[@]}" "$@" ;; diff --git a/9.0/entrypoint.sh b/9.0/entrypoint.sh index 9765824..50e82bc 100755 --- a/9.0/entrypoint.sh +++ b/9.0/entrypoint.sh @@ -11,7 +11,7 @@ set -e DB_ARGS=("--db_user" $USER "--db_password" $PASSWORD "--db_host" $HOST "--db_port" $PORT) case "$1" in - --) + -- | openerp-server) shift exec openerp-server "${DB_ARGS[@]}" "$@" ;;