Here is a part of my application.yml
spring:
config:
import: optional:configserver:http://localhost:8012
The thing is whenever I start running microservices I see in the console how it cannot initially find the server at the default port falling back to the 8012 port. However, once I push changes to my git repository, Spring Cloud Config Service fetches those changes re-running all microservices. For no reason they just don't want to connect to the server at 8012 port again. I just failed to find the obstacle. Once I changed the settings to the default port which is 8888 - everything works as expected!
spring:
config:
import: optional:configserver:http://localhost:8888