1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/tinyproxy/README.md

33 lines
484 B
Markdown
Raw Normal View History

2016-11-05 13:31:25 +00:00
tinyproxy
=========
[Tinyproxy][1] is a light-weight HTTP/HTTPS proxy daemon for POSIX operating systems.
## docker-compose.yml
```yaml
2021-11-30 07:46:01 +00:00
version: "3.8"
services:
tinyproxy:
image: vimagick/tinyproxy
ports:
- "8888:8888"
volumes:
- ./data:/etc/tinyproxy
restart: unless-stopped
2016-11-05 13:31:25 +00:00
```
## Server Setup
```bash
$ docker-compose up -d
```
## Client Setup
```bash
$ curl -x https://127.0.0.1:8888 https://ifconfig.co
```
[1]: https://tinyproxy.github.io/