I have a service that listens on a port for both tcp and udp. I'd like to run something like docker run -p 8080 -p 8080/udp -i -t image_name and have docker use a same port on the host for tcp and udp.
Where should I dig into if I want to implement this myself?
I have a service that listens on a port for both tcp and udp. I'd like to run something like
docker run -p 8080 -p 8080/udp -i -t image_nameand have docker use a same port on the host for tcp and udp.Where should I dig into if I want to implement this myself?