Change docker network interfaces names inside the container

Hi,

i am using docker to run application that requires multi network interfaces,
i create new networks using docker network create, and i see the new networks on my host.
When i do docker run, i use – network to connect the docker container to the chosen network. My problem is that on the host the network interface is called “cvd-ebr” (with is what i want) but inside the docker container is called “eth0”, with cause me problem with the application.

Any way to setup the network interfaces names inside the container ?
The network type is Bridge.

thanks