I have a docker container which is running an instance of QEMU inside of it. This particular instance of QEMU is emulating a specific virtual device that self-assigns an IP address of 192.168.0.30. The container's IP address is 172.17.0.2. I would like to expose/forward all the traffic from the container to the QEMU instance such that when I visit the container's IP address; 172.17.0.2:80, I actually talk to 192.168.0.30:80 which is the QEMU instance inside of the container. Any help would be really helpful!
Thanks!