Sign inSign up

djzhu/tinyproxy

By djzhu

Updated over 1 year ago

A lightweight Docker image for Tinyproxy, a fast and small HTTP/HTTPS proxy server.

Image
Networking
0

91

djzhu/tinyproxy repository overview

Tinyproxy Docker Image

A lightweight Docker image for Tinyproxy, a fast and small HTTP/HTTPS proxy server. Built on Ubuntu 22.04, this image is ideal for development, testing, or lightweight production proxy needs.

Features

  • Based on official Ubuntu 22.04
  • Tinyproxy pre-installed
  • Default listening port: 8888
  • Customizable configuration via tinyproxy.conf

Quick Start

  1. Run with Docker
docker run -d --name tinyproxy \
  -p 8888:8888 \
  djzhu/tinyproxy
  1. Run with Docker Compose Create a docker-compose.yml:
version: '3'
services:
  tinyproxy:
    image: djzhu/tinyproxy
    ports:
      - "8888:8888"

Start the service:

docker-compose up -d

Default Configuration

  • Proxy port: 8888
  • Config file: tinyproxy.conf
  • The image copies a default config file at build time. To use your own config, mount it:
docker run -d --name tinyproxy \
  -p 8888:8888 \
  -v /path/to/your/tinyproxy.conf:/etc/tinyproxy/tinyproxy.conf \
  djzhu/tinyproxy

Notes

The container runs tinyproxy -d (daemon mode in foreground for container management) For advanced configuration, see the Tinyproxy documentation

Tag summary

Content type

Image

Digest

sha256:305a4f8df

Size

28.6 MB

Last updated

over 1 year ago

docker pull djzhu/tinyproxy:1.10.0-ubuntu-22.04