Binding Outgoing IP on Multiple NIC

Hello mates
I am using haproxy for a reverse proxy.But i tested and realized that traefik is much more efficent and fast.But in my case there is remote server and there are multiple network cards.In haproxy i can manage outgoing traffic.So i can tell my backends to go via this network card.Config in haproxy is below:
server server1 192.168.15.39:3000 source 192.168.15.142 maxconn 4 check
server server2 192.168.15.39:3000 source 192.168.15.143 maxconn 4 check
here my remote server is 192.168.15.39:3000
my first network card's ip is 192.168.15.142
my second network card's ip is 192.168.15.143
So this proxy doing a load balancing between network cards.
How can i achieve this in traefik ?