ICD-API / csharp-samples

ICD-API samples in C#
11 stars 6 forks source link

Issue with Docker Image: Error Loading Classification when Using ES Language #11

Open JonaaSosa opened 1 month ago

JonaaSosa commented 1 month ago

I encountered an issue when trying to run the Docker image with the following command:

docker run -p 8081:80 -e include=2024-01_es -e acceptLicense=true -e saveAnalytics=false whoicd/icd-api

When setting the language to ES (Spanish), I receive the following error message:

Loading cloud_2024-01-21_release-icf-mms_es
Couldn't find the classification cloud_2024-01-21_release-icf-mms_es

It seems that the specified classification file cloud_2024-01-21_release-icf-mms_es cannot be found.

Steps to Reproduce:

  1. Run the Docker command with the provided parameters.
  2. Observe the error message regarding the missing classification file.

Expected Behavior:

The Docker container should start without errors, and the specified classification file should be loaded correctly.

Please advise on how to resolve this issue or if there are any updates regarding the availability of the necessary classification files.

Thank you!


Asegúrate de ajustar los detalles específicos según tu configuración y versión. ¡Espero que te sea útil!

mdonada commented 1 month ago

Hi, you can use this include parameter 2024-01_en-es instead of 2024-01_es

docker run -p 8081:80 -e include=2024-01_en-es -e acceptLicense=true -e saveAnalytics=false whoicd/icd-api

It will load both languages English and Spanish (for some reasons, the Spanish only version fails during loading)

Best, Marc