This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push: new 058ae2df43 Improved: Include DOCKER.adoc in README.adoc (OFBIZ-12911) 058ae2df43 is described below commit 058ae2df43698f93cb327f990da7fa4551c7e350 Author: Jacques Le Roux <jacques.le.r...@les7arts.com> AuthorDate: Fri Feb 23 10:59:49 2024 +0100 Improved: Include DOCKER.adoc in README.adoc (OFBIZ-12911) This includes the Docker doc into the readme group --- README.adoc | 6 ++++++ build.gradle | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index 180e9464f2..d2fa1a9ee0 100644 --- a/README.adoc +++ b/README.adoc @@ -144,6 +144,12 @@ _Note_: Ignore the % progress indicator because this task does not end as long as OFBiz is running. ___________________________________________________________________________________________________ + +[[Docker]] +== Docker +If you want to set and use Docker, link:Docker.html[here is the documentation] + + [[visit-ofbiz-through-your-browser]] === Visit OFBiz through your browser: diff --git a/build.gradle b/build.gradle index 7c06ac9744..e99532d97f 100644 --- a/build.gradle +++ b/build.gradle @@ -633,8 +633,9 @@ task generateReadmeFiles(group: docsGroup, type: AsciidoctorTask) { doFirst { delete "${buildDir}/asciidoc/readme" } description 'Generate OFBiz README files' sourceDir "${rootDir}" + // CHANGELOG.adoc should be only present in the current stable version sources { - include 'README.adoc', 'CHANGELOG.adoc', 'CONTRIBUTING.adoc' + include 'README.adoc', 'CHANGELOG.adoc', 'CONTRIBUTING.adoc', 'DOCKER.adoc' } outputDir file("${buildDir}/asciidoc/readme/") }