diff --git a/docs/custom-apps.md b/docs/custom-apps.md index 22b19dc5..c2cb6f85 100644 --- a/docs/custom-apps.md +++ b/docs/custom-apps.md @@ -12,12 +12,12 @@ cd frappe_docker ```shell export APPS_JSON='[ { - "url": "https://github.com/frappe/payments", - "branch": "develop" + "url": "https://github.com/frappe/erpnext", + "branch": "version-15" }, { - "url": "https://github.com/frappe/erpnext", - "branch": "version-14" + "url": "https://github.com/frappe/payments", + "branch": "version-15" }, { "url": "https://user:password@git.example.com/project/repository.git", @@ -44,9 +44,9 @@ Note: ```shell buildah build \ --build-arg=FRAPPE_PATH=https://github.com/frappe/frappe \ - --build-arg=FRAPPE_BRANCH=version-14 \ - --build-arg=PYTHON_VERSION=3.10.12 \ - --build-arg=NODE_VERSION=16.20.1 \ + --build-arg=FRAPPE_BRANCH=version-15 \ + --build-arg=PYTHON_VERSION=3.11.6 \ + --build-arg=NODE_VERSION=18.18.2 \ --build-arg=APPS_JSON_BASE64=$APPS_JSON_BASE64 \ --tag=ghcr.io/user/repo/custom:1.0.0 \ --file=images/custom/Containerfile .