This is a service that sends incoming request to another URL specified via
HTTP_FORWARD_BASEURL
environment variable and returns back the response from
there.
- Build the Docker image:
docker build -t http-forward .
- Run the Docker container:
docker run --rm -p 8080:8080 -e HTTP_FORWARD_BASEURL="http://example.com" http-forward