-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Rahul] | Add. Base Module And Remove Fresh DB Build
* [Rahul] | Add. Set odoo As Default DB * [Rahul] | Fix. Remove Fresh DB Files * [Rahul] | Add. Command For Module Installation
- Loading branch information
1 parent
50e2186
commit 3320ef9
Showing
5 changed files
with
5 additions
and
69 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
FROM odoo:16 | ||
FROM odoo:16.0 | ||
|
||
ENV ADDON_PATH=/opt/bahmni-erp/bahmni-addons | ||
|
||
COPY package/docker/odoo/odoo.conf /etc/odoo/odoo.conf | ||
COPY bahmni_api_feed ${ADDON_PATH}/bahmni_api_feed/ | ||
COPY bahmni_base ${ADDON_PATH}/bahmni_base/ | ||
COPY restful_api ${ADDON_PATH}/restful_api/ | ||
CMD ["odoo", "-u", "all"] | ||
|
||
CMD ["odoo", "-u", "all", "-i", "sale_management,purchase,stock,point_of_sale,l10_generic_coa,restful_api", "--without-demo", "-d odoo"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters