2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-09-19 18:49:01 +00:00

Merge pull request #107 from revant/fix-worker-images

fix worker images
This commit is contained in:
Chinmay Pai 2020-03-04 16:13:39 +05:30 committed by GitHub
commit e3cd90bda2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ site_name = os.environ.get("SITE_NAME", 'site1.localhost')
mariadb_root_username = os.environ.get("DB_ROOT_USER", 'root')
mariadb_root_password = os.environ.get("MYSQL_ROOT_PASSWORD", 'admin')
force = True if os.environ.get("FORCE", None) else False
install_apps = ['erpnext'] if os.environ.get("INSTALL_ERPNEXT", None) else False
install_apps = ['erpnext'] if os.environ.get("INSTALL_ERPNEXT", None) else []
frappe.init(site_name, new_site=True)
_new_site(