thiagoelg commented on issue #2214: URL: https://github.com/apache/incubator-kie-issues/issues/2214#issuecomment-3781193993
Yes, CORS Proxy is its own service. Looks like our deployment failed at some point, and both Extended Services and CORS Proxy are not up 😕. You can run the project yourself, building it locally after reading our [README](https://github.com/apache/incubator-kie-tools/blob/main/README.md) and [MANUAL](https://github.com/apache/incubator-kie-tools/blob/main/repo/MANUAL.md). Or run the published images (10.1.0) using this docker compose: ``` version: "3.8" services: kie_sandbox: container_name: kie_sandbox image: docker.io/apache/incubator-kie-sandbox-webapp:10.1.0 ports: - 9090:8080 environment: KIE_SANDBOX_EXTENDED_SERVICES_URL: "http://localhost:21345" KIE_SANDBOX_CORS_PROXY_URL: "http://localhost:7081" depends_on: - extended_services_java - cors_proxy extended_services_java: container_name: extended_services_java image: docker.io/apache/incubator-kie-sandbox-extended-services:10.1.0 ports: - 21345:21345 cors_proxy: container_name: cors_proxy image: docker.io/apache/incubator-kie-cors-proxy:10.1.0 ports: - 7081:8080 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
