From 1054824dc3216d066fe89c4b1b692b03da89e75a Mon Sep 17 00:00:00 2001 From: Yhael S Date: Fri, 21 Apr 2023 22:02:03 -0500 Subject: [PATCH] fix --- odoo/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/odoo/entrypoint.sh b/odoo/entrypoint.sh index 4078d6e..817061a 100755 --- a/odoo/entrypoint.sh +++ b/odoo/entrypoint.sh @@ -32,9 +32,9 @@ case "$1" in if [ ${APP_ENV} = 'debug' ] ; then # Automagically update the addons you are currently working on. - echo /usr/bin/python3 -m debugpy --listen 0.0.0.0:8071 /usr/bin/odoo --config ${ODOO_RC} --database= --update= --init= --load= --dev= + echo /usr/bin/python3 -m debugpy --listen 0.0.0.0:8888 /usr/bin/odoo --config ${ODOO_RC} --database= --update= --init= --load= --dev= - exec /usr/bin/python3 -m debugpy --listen 0.0.0.0:8071 /usr/bin/odoo --config ${ODOO_RC} --database=${DB_NAME} --update=${UPDATE} --init=${INIT} --load=${SERVER_WIDE_MODULES} --dev=${DEV_MODE} + exec /usr/bin/python3 -m debugpy --listen 0.0.0.0:8888 /usr/bin/odoo --config ${ODOO_RC} --database=${DB_NAME} --update=${UPDATE} --init=${INIT} --load=${SERVER_WIDE_MODULES} --dev=${DEV_MODE} fi if [ ${APP_ENV} = 'testing' ] ; then