Skip to content
This repository was archived by the owner on Mar 20, 2021. It is now read-only.

Latest commit

 

History

History
28 lines (23 loc) · 775 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 775 Bytes

Docker Pulls Docker Automation

Redsocks transparent proxy for docker

Redirects whole docker network traffic through a http, optionally trough a https proxy.

Docker compose sample excerpt

version: '2'

services:

  redsocks:
    image: flavioaiello/redsocks
    privileged: true
    network_mode: "host"
    environment:
      - HTTP_RELAY=123.123.123.123
      - HTTP_RELAY_PORT=8080
      - TCP_RELAY=123.123.123.123
      - TCP_RELAY_PORT=8080
    restart: always

    yours:
        depends_on:
            - redsocks