Docker images of Pacproxy. Pacproxy provides a proxy server controlled with your proxy.pac.
You can use this container as a proxy server which can be controlled with proxy pac.
You can use Pacproxy server with http_proxy
and https_proxy
environment variables as same as usual proxy servers.
Run your container with your proxy pac location.
docker run -d -p 3128:3128 -it otahi/pacproxy pacproxy -P http://example.com/proxy.pac
or
Put your pacproxy.yml with your own configuration on your currecnt directory.
docker run -d -p 3128:3128 -v`pwd`:/opt/pacproxy/work -it otahi/pacproxy
See pacproxy.yml.
- Fork it ( https://github.com/otahi/pacproxy/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request