All Projects → shridarpatil → erpnext-docker

shridarpatil / erpnext-docker

Licence: MIT license
Dockerizing erpnext

Programming Languages

shell
77523 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to erpnext-docker

Erpnext
Free and Open Source Enterprise Resource Planning (ERP)
Stars: ✭ 10,220 (+63775%)
Mutual labels:  erp, frappe, erpnext
apparelo
Frappe application to manage the manufacturing workflows in the garment industry. Reach us out at [email protected]
Stars: ✭ 26 (+62.5%)
Mutual labels:  erp, frappe, erpnext
renovation core
renovation.leam.dev
Stars: ✭ 15 (-6.25%)
Mutual labels:  frappe, erpnext
awesome-frappe
A curated list of awesome things related to the Frappe Framework
Stars: ✭ 140 (+775%)
Mutual labels:  frappe, erpnext
erpnext ocr
🐍 ⚗️ Optical Character Recognition using tesseract within Frappe.
Stars: ✭ 58 (+262.5%)
Mutual labels:  frappe, erpnext
mobile
Mobile App for Frappe built on Flutter
Stars: ✭ 176 (+1000%)
Mutual labels:  frappe, erpnext
POS-Awesome
POS Awesome is an open-source Point of Sale for Erpnext using Vue.js and Vuetify
Stars: ✭ 109 (+581.25%)
Mutual labels:  frappe, erpnext
renovation core.dart
The Frappe Dart/Flutter Front End SDK
Stars: ✭ 13 (-18.75%)
Mutual labels:  frappe, erpnext
Frappe
Low code web framework for real world applications, in Python and Javascript
Stars: ✭ 3,349 (+20831.25%)
Mutual labels:  frappe, erpnext
healthcare
Open Source Healthcare ERP / Management System
Stars: ✭ 68 (+325%)
Mutual labels:  erp, erpnext
actpy
Python framework for business applications contains ERP , CRM , HRM , MRP , POS and many more
Stars: ✭ 30 (+87.5%)
Mutual labels:  erp, erpnext
renovation-core
The Frappe Javascript Front End Missing SDK
Stars: ✭ 23 (+43.75%)
Mutual labels:  frappe, erpnext
mis-builder
Management Information System reports for Odoo: easily build super fast, beautiful, custom reports such as P&L, Balance Sheets and more.
Stars: ✭ 106 (+562.5%)
Mutual labels:  erp
metasfresh-documentation
Docs and Manuals for Devs, Users, Admins
Stars: ✭ 22 (+37.5%)
Mutual labels:  erp
odoobooks
Odoo Best Practices - Online Book
Stars: ✭ 46 (+187.5%)
Mutual labels:  erp
permacoop
Open source and eco design ERP solution reserved for worker-owned business.
Stars: ✭ 167 (+943.75%)
Mutual labels:  erp
account-invoice-reporting
Odoo Invoicing reports
Stars: ✭ 51 (+218.75%)
Mutual labels:  erp
account-reconcile
Odoo account reconciliation modules (statements, data completion...)
Stars: ✭ 85 (+431.25%)
Mutual labels:  erp
knowledge
Odoo Document & Knowledge Management
Stars: ✭ 115 (+618.75%)
Mutual labels:  erp
purchase-workflow
Odoo Purchases, Workflow and Organization
Stars: ✭ 133 (+731.25%)
Mutual labels:  erp

Erpnext-docker

Dockerizing erpnext for production

git clone https://github.com/shridarpatil/erpnext-docker.git
cd  erpnext-docker
docker pull shridh0r/erpnext:<tagname>

update same tagname in docker-compose.yml file

docker-compose up
docker exec -it erpnext-docker_web-app_1 /bin/sh

bench reinstall
bench build

open http://localhost:8005

Customizing docker

Pull docker image

docker pull shridh0r/erpnext:tagname

Run

Docker compose up by default runs bench start you can change it to run using gunicorn by replacing the command under service web-app in docker-compose.yml file with the following command

/home/frappe/frappe-bench/env/bin/gunicorn -b 0.0.0.0:8000 --workers 4 --threads 4 -t 120 frappe.app:application --preload.

docker-compose up

Create site

Exec into docker container and create new site

  • bench new-site site1.local

  • bench install-app erpnext

  • Visit http://localhost:8000.

Custom Build

Docker build by default pull's erpnext master branch
docker build . -t shridh0r/erpnext:v12 --build-arg BRANCH=version-12 --build-arg IMAGE_VERSION=v12

Build args

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].