JakobLJ
JakobLJ

Reputation: 33

Spring Boot Config Client

Developing microservices using Spring Boot, and are currently working on containerizing our applications. However, I can't seem to figure out best practices for Cloud Config client.

How do I best update the cloud config server for the docker container?

Thanks!

Upvotes: 0

Views: 65

Answers (1)

Amit
Amit

Reputation: 703

In practice, the your containerized config application should be pulling the config from some centralized repository where configs are checked in and from there your microservices or containerized app will pull the config for further process.

Upvotes: 1

Related Questions