Skip to content

Commit 9a15b35

Browse files
authored
Merge pull request #10 from DecisionsDev/vnext-release
Prepare next delivery
2 parents 2b6dcbf + 11b37e2 commit 9a15b35

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

.md_check_config.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@
88
{
99
"pattern": "^/LICENSE",
1010
"replacement": "{{BASEURL}}/LICENSE"
11+
},
12+
"replacementPatterns": [
13+
{
14+
"pattern": "https://www.ibm.com/docs",
15+
"replacement": "https://ibmdocs-test.dcs.ibm.com/docs"
1116
}
1217
],
1318
"timeout": "20s"
14-
}
19+
}

README.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ docker pull icr.io/cpopen/odm-k8s/odm
1212
# Quick reference
1313

1414
- **Where to get help**:
15-
* [ODM Documentation](https://www.ibm.com/docs/en/odm/9.0.0?topic=manager-introducing-operational-decision)
15+
* [ODM Documentation](https://www.ibm.com/docs/en/odm/9.5.0?topic=manager-introducing-operational-decision)
1616
* [IBM Business Automation Community](https://community.ibm.com/community/user/automation/communities/community-home?CommunityKey=c0005a22-520b-4181-bfad-feffd8bdc022)
1717

1818
- **Where to file issues**:
@@ -26,15 +26,16 @@ docker pull icr.io/cpopen/odm-k8s/odm
2626
https://github.com/ODMDev/odm-ondocker/tree/master/standalone/dockerhub
2727

2828
- **Supported Docker versions**:
29-
[latest release](https://docs.docker.com/engine/release-notes/#201021) (down to Engine 20.10)
29+
[latest release](https://docs.docker.com/engine/release-notes/#201021) (down to Engine 27)
3030

3131
- **Rule Designer development environment for ODM developers**:
32-
Available from the [Eclipse marketplace](https://marketplace.eclipse.org/content/ibm-operational-decision-manager-developers-v900-rule-designer)
32+
Available from the [Eclipse marketplace](https://marketplace.eclipse.org/content/ibm-operational-decision-manager-developers-v95x-rule-designer)
3333

34-
Use [IDE 2023-12 R (4.30) Modeling Tools Packages](https://www.eclipse.org/downloads/packages/release/2023-12/r).
35-
Eclipse 2023-12 uses Java Development Kit (JDK) 17. You can download the JDK from [IBM Semeru Runtimes Downloads](https://developer.ibm.com/languages/java/semeru-runtimes/downloads/).
34+
You install Rule Designer into [Eclipse 2024-12 (4.34)](https://www.eclipse.org/downloads/packages/release/2024-12/r). Use at least [Eclipse Modeling Tool](https://www.eclipse.org/downloads/packages/release/2024-12/r/eclipse-modeling-tools) or [Eclipse IDE for Enterprise Java and Web Developers](https://www.eclipse.org/downloads/packages/release/2024-12/r/eclipse-ide-enterprise-java-and-web-developers).
35+
36+
Eclipse 2024-12 uses Java Development Kit (JDK) 21. You can download the JDK from [IBM Semeru Runtimes Downloads](https://developer.ibm.com/languages/java/semeru-runtimes/downloads/).
3637

37-
More informations on [ODM Documentation- Installing Rule Designer](https://www.ibm.com/docs/en/odm/9.0.0?topic=900-installing-rule-designer)
38+
More informations on [ODM Documentation- Installing Rule Designer](https://www.ibm.com/docs/en/odm/9.5.0?topic=950-installing-rule-designer)
3839

3940
- **Sample projects**:
4041

@@ -59,7 +60,7 @@ docker pull icr.io/cpopen/odm-k8s/odm
5960

6061
# Overview
6162

62-
The image in this repository contains IBM Operational Decision Manager for Developers based on the IBM Websphere Application Server Liberty for Developer image. See the license section below for restrictions on the use of this image. For more information about IBM Operational Decision Manager, see the [ODM Documentation](https://www.ibm.com/docs/en/odm/9.0.0?topic=manager-introducing-operational-decision) site.
63+
The image in this repository contains IBM Operational Decision Manager for Developers based on the IBM Websphere Application Server Liberty for Developer image. See the license section below for restrictions on the use of this image. For more information about IBM Operational Decision Manager, see the [ODM Documentation](https://www.ibm.com/docs/en/odm/9.5.0?topic=manager-introducing-operational-decision) site.
6364

6465

6566
# Usage
@@ -73,13 +74,13 @@ You must accept the license before you launch the image. The license is availabl
7374
To install the product with the sample projects, you need to specify the option -e SAMPLE=true. To be able to run simulations, you need to increase the size of the memory. Use the following docker command to run the image:
7475

7576
```console
76-
docker run -e LICENSE=accept -p 9060:9060 -p 9443:9443 -e SAMPLE=true icr.io/cpopen/odm-k8s/odm:9.0
77+
docker run -e LICENSE=accept -p 9060:9060 -p 9443:9443 -e SAMPLE=true icr.io/cpopen/odm-k8s/odm:9.5
7778
```
7879

7980
Some decision artifacts, like simulation definitions, version history, or snapshots, cannot be exported from the Decision Center or the Decision Server instances of the Docker image. To avoid losing this data when you delete the Docker image container, store the Decision Center and the Decision Server databases outside of the ODM for Developers Docker image container, in a local mounted host volume. To do so, run the following docker command from an empty local folder:
8081

8182
```console
82-
docker run -e LICENSE=accept -p 9060:9060 -p 9443:9443 -u $(id -u) -v $PWD:/config/dbdata/ -e SAMPLE=false icr.io/cpopen/odm-k8s/odm:9.0
83+
docker run -e LICENSE=accept -p 9060:9060 -p 9443:9443 -u $(id -u) -v $PWD:/config/dbdata/ -e SAMPLE=false icr.io/cpopen/odm-k8s/odm:9.5
8384
```
8485

8586
When you first run this command, it creates the .db files in your local folder. The following times, it reads and updates these files.
@@ -104,4 +105,5 @@ When the server is started, use the URL http://localhost:9060 to display a welco
104105

105106
**Note**: The IBM Operational Decision Manager for Developers license does not permit further distribution and the terms restrict usage to a developer machine.
106107

107-
108+
# Notice
109+
© Copyright IBM Corporation 2025.

0 commit comments

Comments
 (0)