2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-11-09 14:50:58 +00:00

fix: worker images new site command

install apps is a list not boolean
This commit is contained in:
Revant Nandgaonkar 2020-03-04 14:36:13 +05:30
parent c21d26fa36
commit 501d144728

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(