Hello! I have this problem when running the command “$ docker compose -f docker-compose-web-modeler.yaml up -d”
"time=“2023-11-06T14:24:31-03:00” level=warning msg=“The "JAVA_OPTIONS" variable is not set. Defaulting to a blank string.”
service “modeler-restapi” depends on undefined service identity: invalid compose project
"
The JAVA_OPTIONS option defaults to the value “-Xmx128m” in the docker-compose-web-modeler.yaml environment
Thank you!
Hi @Facundo_Sanchez, welcome to the forums. The JAVA_OPTIONS message is a warning and is safe to ignore. The issue is that you do not have the other required services running. Web Modeler depends on other Camunda services (see here in the docker-compose file). The full command in the README includes both files:
docker compose -f docker-compose.yaml -f docker-compose-web-modeler.yaml up -d
The docker-compose.yaml
file defines and starts the required services, and then Web Modeler is able to start.
OK, now I understand, but when I execute the command docker compose -f docker-compose.yaml -f docker-compose-web-modeler.yaml up -d
I get an authorization error
“Error response from daemon: unauthorized: unauthorized to access repository: web-modeler-ee/modeler-webapp, action: pull: unauthorized to access repository: web-modeler-ee/modeler-webapp, action: pull”
Web Modeler is only available under an Enterprise License. If you have an Enterprise account with Camunda, you can authenticate against our private container repository to pull the image. Otherwise, you need to use Desktop Modeler or the SaaS product.
1 Like