From b2e71bb12d30027bbcf8a7e8af49e2803415e6a7 Mon Sep 17 00:00:00 2001 From: Trusted Computer <75872475+trustedcomputer@users.noreply.github.com> Date: Fri, 15 Dec 2023 19:49:26 -0800 Subject: [PATCH] Update custom-apps.md for version-15 (#1291) Updating documentation examples to version-15 --- docs/custom-apps.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 .