Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 26 days ago
JSON representation
Production ready transparent proxy for docker on corporate networks
- Host: GitHub
- URL: https://github.com/flavioaiello/redsocks
- Owner: flavioaiello
- Archived: true
- Created: 2016-12-03T10:24:16.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-19T19:10:35.000Z (over 3 years ago)
- Last Synced: 2024-08-03T17:12:20.236Z (4 months ago)
- Topics: docker, proxy, redsocks, transparent-proxy
- Language: Shell
- Homepage: https://hub.docker.com/r/flavioaiello/redsocks/
- Size: 17.6 KB
- Stars: 5
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-network-stuff - **5**星
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: alwaysyours:
depends_on:
- redsocks
```