We are using your solution for example on one server with 25 different domains. There are copies of the same docker image being used acrcoss different domains for technical reasons, as follows:
under https-portal:
battery.x.y -> x-datafeed-battery:80 #production
and then
x-datafeed-battery:
container_name: monitoring_battery
image: registry.bla.bla:5001/image_x:latest
The other copies of this docker image are NOT being routed with https. They are run as a part of the same compose to get them online and they run cron jobs. But they are not referenced in https-portal.
x-datafeed:
container_name: monitoring_datafeed
image: registry.bla.bla:5001/image_x:latest
For some reason, traffic that is routed to battery.x.y is seen in logs and activity of x-datafeed and other ones like it.
Where would we begin to debug this? Is it somehow relevant that the same docker image is used multiple times?
We are using your solution for example on one server with 25 different domains. There are copies of the same docker image being used acrcoss different domains for technical reasons, as follows:
under https-portal:
battery.x.y -> x-datafeed-battery:80 #productionand then
The other copies of this docker image are NOT being routed with https. They are run as a part of the same compose to get them online and they run cron jobs. But they are not referenced in https-portal.
For some reason, traffic that is routed to
battery.x.yis seen in logs and activity of x-datafeed and other ones like it.Where would we begin to debug this? Is it somehow relevant that the same docker image is used multiple times?