Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/flavioaiello/redsocks

Production ready transparent proxy for docker on corporate networks
https://github.com/flavioaiello/redsocks

docker proxy redsocks transparent-proxy

Last synced: about 1 month ago
JSON representation

Production ready transparent proxy for docker on corporate networks

Awesome Lists containing this project

README

        

[![Docker Pulls](https://img.shields.io/docker/pulls/flavioaiello/redsocks.svg)](https://hub.docker.com/r/flavioaiello/redsocks/)
[![Docker Automation](
https://img.shields.io/docker/automated/flavioaiello/redsocks.svg)](https://hub.docker.com/r/flavioaiello/redsocks/)

# 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
```