Skip to content

QueraTeam/docker-tinyproxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-tinyproxy

A minimal Docker image for Tinyproxy, built on Alpine Linux. This image is suitable for lightweight HTTP/HTTPS proxy deployments in containerized environments.

Features

  • Based on alpine:latest for a small footprint
  • Installs tinyproxy and curl
  • Exposes port 8888 by default
  • Automated multi-architecture builds (amd64, arm64) via GitHub Actions
  • Images published to GitHub Container Registry (ghcr.io/querateam/docker-tinyproxy:latest)

Usage

Pull the image

docker pull ghcr.io/querateam/docker-tinyproxy:latest

Run the container

docker run -d -p 8888:8888 ghcr.io/querateam/docker-tinyproxy:latest

Customization

You can customize the Tinyproxy configuration by mounting a custom tinyproxy.conf file:

docker run -d -p 8888:8888 -v /path/to/your/tinyproxy.conf:/etc/tinyproxy/tinyproxy.conf ghcr.io/querateam/docker-tinyproxy:latest

You can also restrict proxy access to specific hosts by setting the ALLOWED_HOSTS environment variable (comma-separated list):

docker run -d -p 8888:8888 -e ALLOWED_HOSTS="example.com,another.com" ghcr.io/querateam/docker-tinyproxy:latest

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages