mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-12 04:23:04 +02:00
update
This commit is contained in:
parent
42a125fae0
commit
14845e8ca8
30
polipo/README.md
Normal file
30
polipo/README.md
Normal file
@ -0,0 +1,30 @@
|
||||
Polipo — a caching web proxy
|
||||
============================
|
||||
|
||||
`Polipo` 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
|
||||
|
||||
```
|
||||
polipo:
|
||||
image: vimagick/polipo
|
||||
command: authCredentials=username:password
|
||||
ports:
|
||||
- "8123:8123"
|
||||
restart: always
|
||||
```
|
||||
|
||||
## server
|
||||
|
||||
```
|
||||
$ docker-compose up -d
|
||||
```
|
||||
|
||||
## client
|
||||
|
||||
```
|
||||
$ curl -x http://username:password@server:8123 https://www.youtube.com/
|
||||
```
|
@ -1,5 +1,6 @@
|
||||
polipo:
|
||||
image: vimagick/polipo
|
||||
command: proxyAddress=0.0.0.0 authCredentials=username:password
|
||||
ports:
|
||||
- "8123:8123"
|
||||
restart: always
|
||||
|
Loading…
Reference in New Issue
Block a user