[docker-compose] distro not working properly ?
See original GitHub issueEnvironment - Windows 10 pro / Docker for windows v20.10.2 / Google Chrome 87.0.4280.141 ApiCurio release - latest on Master branch (on the time of this comment) Issue description:
we have been trying to test ApiCurio on our local Docker compose to evaluate it, as we have been hearing good feedback about it so far, but we are having difficult time setting it up using its Docker Compose distro …
- docker-compose distro is not running correctly due to an issue connecting to mysql without SSL.
- quarkus docker-compose has been installed correctly
- but not initially, as we had to replace this string in the .env file in order for Apicurio to integrate with the auth service correctly …
APICURIO_KC_AUTH_URL=http://192.168.1.40:8090/auth/realms/apicurio
replaced withAPICURIO_KC_AUTH_URL=http://192.168.1.40:8090/auth
- and all 3 portals opened correctly after that (keycloack, microcks, & Apicurio)
- but Apicurio portal couldn’t work with its api due to CORS issue
- but not initially, as we had to replace this string in the .env file in order for Apicurio to integrate with the auth service correctly …
are we missing any configurations ?
Thank you.
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
Docker compose volumes not working
The WSL distribution is not Docker. Docker Desktop just uses WSL2 to have a virtual Linux OS. depechie:
Read more >Why is Docker installed but not Docker Compose?
Installing docker doesn't mean that you've installed docker-compose. It has as prerequisitions that you' ...
Read more >the command 'docker-compose' could not be found in this ...
I've Windows 10 Home, but my docker isn't working properly: docker sucks. If I run the command echo $PATH inside WSL, I get:....
Read more >Install Docker in WSL 2 without Docker Desktop
Step 2: Install Docker / Docker Compose v2 in WSL 2 ... 2>&1 | grep -q "is not running"; then wsl.exe --distribution "${WSL_DISTRO_NAME}" ......
Read more >Get started with Docker remote containers on WSL 2
However, while Docker Desktop supports running both Linux and Windows containers, you can not run both simultaneously. To run Linux and ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @hanyEthan, I’m glad you raised this cause it led me to find a bug in the
docker-compose
distro. We had a problem with the microcks realm template, causing the redirect URI to be invalid. I’ve linked a PR that should fix the issue.Also, as a side note, you should access the applications using your host IP, using localhost will lead you to the same
invalid_url
error.Thanks!
thank you @carlesarnal, the installation and auth are working properly now. we will continue our evaluation, and will report any blockers.