Dockerfile to build image with polipo proxy server.
Current Version: 1.1.1
Pull specific version of the image from the docker index.
docker pull burkostya/polipo:1.1.1
Alternately you can build the image yourself.
git clone https://github.com/burkostya/polipo.git
cd polipo
docker build -t '<user>/polipo' .
Run container
docker run --name='polipo' -it --rm \
-p 3111:3111 \
burkostya/polipo:1.1.1
Polipo web interface now available on http://localhost:3111/polipo/
For cache persistency you should mount a volume /var/cache/polipo
docker run --name='polipo' -d \
-p 3111:3111 \
-v /opt/data/polipo/cache:/var/cache/polipo \
burkostya/polipo:1.1.1
To upgrade to newer version of polipo, follow this steps:
docker pull burkostya/polipo:1.1.1
docker stop polipo
docker rm polipo
cp -r /opt/data/polipo/cache /some/poilpo/cache/backup/dir/
docker run -d --name polipo \
-p 3111:3111\
-v /opt/data/polipo/cache:/var/cache/polipo \
burkostya/polipo:1.1.1
Content type
Image
Digest
sha256:a0e4bef34…
Size
52.2 MB
Last updated
almost 11 years ago
docker pull burkostya/polipo