mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-10 11:10:27 +02:00
35 lines
712 B
Markdown
35 lines
712 B
Markdown
Polipo — a caching web proxy
|
|
============================
|
|
|
|
[Polipo][1] is a small and fast caching web proxy (a web cache, an HTTP proxy, a
|
|
proxy server). While Polipo was designed to be used by one person or a small
|
|
group of people, there is nothing that prevents it from being used by a larger
|
|
group.
|
|
|
|
## docker-compose.yml
|
|
|
|
```yaml
|
|
polipo:
|
|
image: vimagick/polipo
|
|
command:
|
|
authCredentials=username:password
|
|
socksParentProxy=1.2.3.4:9050
|
|
ports:
|
|
- "8123:8123"
|
|
restart: always
|
|
```
|
|
|
|
## server
|
|
|
|
```bash
|
|
$ docker-compose up -d
|
|
```
|
|
|
|
## client
|
|
|
|
```bash
|
|
$ curl -x http://username:password@server:8123 https://www.youtube.com/
|
|
```
|
|
|
|
[1]: https://www.irif.univ-paris-diderot.fr/~jch/software/polipo/
|