treeem
#1
Refer to the document of build the custom app with docker image.
ERPNext Docker
What to change in apps.json
if I want to build the latest of erpnext
export APPS_JSON='[
{
"url": "https://github.com/frappe/payments",
"branch": "develop"
},
{
"url": "https://github.com/frappe/erpnext",
"branch": "version-14"
},
{
"url": "https://user:password@git.example.com/project/repository.git",
"branch": "main"
}
]'
Use tag names instead of branch. That way you can use exact version instead of latest changes from branch.
E.g. for erpnext use v14.26.0 instead of version-14
Check latest release Releases · frappe/erpnext · GitHub
1 Like
treeem
#3
Will change something like , right?
export APPS_JSON='[
{
"url": "https://github.com/frappe/payments",
"branch": "develop"
},
{
"url": "https://github.com/frappe/erpnext",
"tag": "v14.26.0"
},
{
"url": "https://user:password@git.example.com/project/repository.git",
"branch": "main"
}
]'
Payments also has version-14 branch
1 Like