I want to retrieve config-server data from config-server running on docker container

0

I am using dockerized config-server on my one machine. And I have saved property files on git repo. to access that I can use "http://IP:8888/configserver/environment/xyz". Now I want to access that files through java spring. I have git repo such as "https://github.org.com/org-id/test-config". And I have saved that in MongoDB such as

{
    "_id" : ObjectId("******************"),
    "environment" : "xyz",
    "configserverurl" : "http://ip:8888/configserver",
    "configrepo" : "https://github.org.com/org-id/test-config.git"
}```

Thank You for an answer in advance.

TestQuestion

Posted 2019-04-28T08:50:45.927

Reputation: 1

No answers