Tag: 打开器

我想为DOCKERIZED ODOO服务器运行一个脚本文件,以使用所有的基本模块运行我所有的自定义模块

我已经在我的Ubuntu中安装了DOCKER ,并且在Docker中也将ODOO映像作为容器,odoo映像在docker上运行成功,但是我无法运行我的testing脚本。 我有我自己的脚本文件指的是运行我的自定义模块和其他文件,其中有以下内容: tests.sh ADDONS_DIR="./addons" DELETE_DB="dropdb testdb" MODULE_LIST="hr_contract_leaves,hr_employee_birthdat_reminder,hr_employee_documents,hr_employee_emergency_contract,hr_employee_loan,hr_employee_medical_information,hr_employee_statutory_detail,hr_payslip_reports,hr_recruitment_interviewer,hr_recruitment_job_stage_survey,hr_recruitment_reports,account,account_accountant,board,calendar,contacts,crm,fleet,hr,hr_attendance,hr_expense,hr_holidays,hr_payroll,hr_recruitment,hr_timesheet,im_livechat,lunch,mail,maintenance,mass_mailing,mrp,mrp_repair,note,point_of_sale,project,project_issue,purchase,sale,survey,website,website_blog,website_event,website_forum,website_slides" echo "Testing for modules: $MODULE_LIST" RUN_ODOO="/gitlab-runner/gitlab-runner-server/odoo-bin –addons-path=/gitlab-runner/gitlab-runner-server/addons –log-level error -d testdb –init $MODULE_LIST –test-enable –stop-after-init 2>&1 | tee test_results.log" echo "Starting tests with the following command: $RUN_ODOO" eval $RUN_ODOO echo "Tests Finished" RESULT=$(grep "FAIL\|ERROR" test_results.log) echo "Failure in tests: $RESULT" echo "Cleaning up" echo "Deleting Databse" eval […]

Docker使用Odoo 10.0

我需要知道如何设置一个Docker来实现一个可以帮助我运行Odoo 10.0 ERP环境的容器。 我正在寻找参考或一些设置指南,即使我不介意,如果你可以粘贴下面的CLI。 我目前正在开发一个Ubuntu操作系统。 提前致谢…….!!!