From 052ea936e499c1b9023b43b5f561e0b504fc2601 Mon Sep 17 00:00:00 2001 From: Laurent GRATEAU Date: Thu, 28 Nov 2024 14:40:44 +0100 Subject: [PATCH] Update full-description.md --- standalone/dockerhub/full-description.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/standalone/dockerhub/full-description.md b/standalone/dockerhub/full-description.md index 1a8ded7c..9a883f1d 100644 --- a/standalone/dockerhub/full-description.md +++ b/standalone/dockerhub/full-description.md @@ -77,13 +77,13 @@ You must accept the license before you launch the image. The license is availabl 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: ```console -docker run -e LICENSE=accept -p 9060:9060 -p 9443:9443 -m 2048M --memory-reservation 2048M -e SAMPLE=true icr.io/cpopen/odm-k8s/odm:9.0 +docker run -e LICENSE=accept -p 9060:9060 -p 9443:9443 -e SAMPLE=true icr.io/cpopen/odm-k8s/odm:9.0 ``` 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: ```console -docker run -e LICENSE=accept -m 2048M --memory-reservation 2048M -p 9060:9060 -p 9443:9443 -v $PWD:/config/dbdata/ -e SAMPLE=false icr.io/cpopen/odm-k8s/odm:9.0 +docker run -e LICENSE=accept -p 9443:9443 -v $PWD:/config/dbdata/ -e SAMPLE=false icr.io/cpopen/odm-k8s/odm:9.0 ``` When you first run this command, it creates the .db files in your local folder. The following times, it reads and updates these files.