Skip to content

w796933/docker-tinyproxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Tinyproxy

Stars Pulls License

Docker implementation of TinyProxy

Getting started

For testing purpose, you may want to change the tinyproxy.conf and switch the LogLevel value to Info and comment the Allow line.

# build docker image
docker build -t tinyproxy .

# run container in background
docker run -d --name tinyproxy -p 8888:8888 tinyproxy

# proxy request via the running container
http_proxy=127.0.0.1:8888 https_proxy=127.0.0.1:8888 curl https://www.google.com -v

# or
curl -x 127.0.0.1:8888 curl https://www.google.com -v

# or proxy all requests from linux based containers
docker run -t -i \
  -e "http_proxy=tinyproxy:8888" \
  -e "https_proxy=tinyproxy:8888" \
  --link tinyproxy \
  travix/toolbox \
  curl https://www.google.com

Custom Tinyproxy configuration

docker run -t -i \
  -v $(pwd)/tinyxproxy.conf:/etc/tinyproxy/tinyproxy.conf
  -p 8888:8888 \
  tinyproxy

License

MIT © Travix International

About

TinyProxy Docker container using Alpine

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages