merlosy opened a new issue, #1776:
URL: https://github.com/apache/incubator-kie-issues/issues/1776

   **Context**
   
   I'm trying to run a local kie sandbox instance based on the latest docker 
images.
   So far, it looks like below:
   ```yml
   services:
   
       kie-sandbox-extended-services:
           container_name: kie-sandbox-extended-services
           image: apache/incubator-kie-sandbox-extended-services:10.0.0
           ports:
               - 21345:21345
   
       cors-proxy:
           container_name: cors-proxy
           image: apache/incubator-kie-cors-proxy:10.0.0
           environment:
               # see 
https://github.com/apache/incubator-kie-tools/tree/main/packages/cors-proxy
               - "CORS_PROXY_HTTP_PORT=8090"
               - "CORS_PROXY_ORIGIN=*"
               - "CORS_PROXY_VERBOSE=false"
           ports:
               - 8081:8080
   
       kie-sandbox:
           container_name: kie-sandbox
           image: apache/incubator-kie-sandbox-webapp:10.0.0
           depends_on:
               - kie-sandbox-extended-services
               - cors-proxy
           environment:
               - "KIE_SANDBOX_EXTENDED_SERVICES_URL=http://localhost:21345";
               - "CORS_PROXY_URL=http://localhost:8081";
           ports:
               - 8090:8080
   ```
   - It successfully run and open the sandbox on localhost:8090.
   - I can add a github personal access token
   
   **Issue**
   
   When adding the URL of the private repository, I get the following error: 
"Can't determine Git refs for 'https://github.com/merlosy/xxxxxx'".
   Is there anything I might be missing? 


-- 
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]

Reply via email to