{
"name": "product",
"profiles": [
"docker"
],
...
"propertySources": [
{
"name": "...file [/config-repo/product.yml]...",
"source": {
"spring.config.activate.on-profile": "docker",
"server.port": 8080,
...
}
},
{
"name": "...file [/config-repo/product.yml]...",
"source": {
"server.port": 7001,
...
}
},
{
"name": "...file [/config-repo/application.yml]...",
"source": {
"spring.config.activate.on-profile": "docker",
...
}
},
{
"name": "...file [/config-repo/application.yml]...",
"source": {
...
"app.eureka-password": "p",
"spring.rabbitmq.password": "guest"
}
}
]
}