Reputation: 10453
I want to run a docker container, and somehow intercept/modify HTTP responses in the host. That means, basically take every HTTP response coming out of the container, and modify it before sending it back to the user. Is there a standard way to do this in docker?
Upvotes: 8
Views: 619
Reputation: 3164
What you could do is create a reverse proxy.
All communication in and out of the docker container is done indirectly, trough the proxy. So clients connect to the reverse proxy, the proxy requests the information from the process inside the container. The proxy will also handle the response to the client.
If you simply want to change some headers, a default setup of an apache reverse proxy might be enough. See this link on how to set up a reverse proxy using apache:
Other proxy technologies you might consider: - Nginx - HAProxy
If you want to do more than just changing headers (please fill me in!) than you might have to write some code to handle that for you.
Good luck! And let me know if you need more help!
Upvotes: 2