GitHub - henkelmax/docker-proxy: A simple Docker container that forwards incoming TCP or UDP traffic to a specific IP.

A simple Docker container that forwards incoming TCP or UDP traffic to a specific IP.

This container uses MengRao/TCP-UDP-Proxy.

Useful Links

Environment Variables

LOCAL_PORT The local port where the incoming packets arrive at

REMOTE_PORT The port the proxy sends the packets to

REMOTE_IP The IP the proxy sends the packets to

PROTOCOL The Protocol (Either udp or tcp)

Example

docker run -e LOCAL_PORT=10000 -e REMOTE_PORT=10000 -e REMOTE_IP=127.0.0.1 -e PROTOCOL=udp henkelmax/proxy