Docker container combining WireGuard VPN with 3proxy to provide HTTP and SOCKS5 proxy services.
Go to file
Reza Behzadan 35000e3f02
All checks were successful
Multi-Arch Build / docker (release) Successful in 6m24s
Back to private registry for gitea workflow
2025-01-04 18:04:36 -05:00
.gitea/workflows Back to private registry for gitea workflow 2025-01-04 18:04:36 -05:00
.github/workflows Two workflows one for ghcr and one for ducker-hub 2025-01-04 12:35:32 -05:00
.gitignore update .gitignore 2025-01-03 10:30:21 -05:00
3proxy.cfg Initial commit 2025-01-03 09:56:20 -05:00
compose.yaml Initial commit 2025-01-03 09:56:20 -05:00
Dockerfile Initial commit 2025-01-03 09:56:20 -05:00
entrypoint.sh Initial commit 2025-01-03 09:56:20 -05:00
Makefile Initial commit 2025-01-03 09:56:20 -05:00
README_DOCKER_HUB.md Add 3proxy link in the README 2025-01-03 10:24:07 -05:00
README.md Update REAME 2025-01-03 10:26:10 -05:00

wireguard-3proxy-docker

Docker container combining WireGuard VPN with 3proxy to provide HTTP and SOCKS5 proxy services through an encrypted tunnel.

Features

  • WireGuard VPN for secure, encrypted tunneling
  • HTTP proxy (port 3128)
  • SOCKS5 proxy (port 1080)
  • DNS resolution through VPN
  • Container logs to stdout
  • Multi-stage build for minimal image size

Requirements

  • Docker
  • Docker Compose
  • WireGuard configuration file (wg0.conf)

Quick Start

  1. Clone the repository:
git clone https://github.com/rbehzadan/wireguard-3proxy-docker.git
cd wireguard-3proxy-docker
  1. Create WireGuard configuration file wg0.conf:
[Interface]
PrivateKey = your_private_key
Address = your_ip_address
DNS = 1.1.1.1, 8.8.8.8

[Peer]
PublicKey = peer_public_key
AllowedIPs = 0.0.0.0/0
Endpoint = peer_endpoint:port
  1. Start the container:
docker compose up -d

Docker Compose Configuration

services:
  wireguard:
    image: rbehzadan/wireguard-3proxy
    container_name: wireguard
    cap_add:
      - NET_ADMIN
      - SYS_MODULE
    devices:
      - /dev/net/tun
    privileged: true
    volumes:
      - ./wg0.conf:/etc/wireguard/wg0.conf
    ports:
      - "3128:3128"
      - "1080:1080"

Build from Source

git clone https://github.com/rbehzadan/wireguard-3proxy-docker.git
cd wireguard-3proxy-docker
docker build -t wireguard-3proxy:latest .

Security Notes

  • Container runs with privileged access (required for WireGuard)
  • No authentication configured by default
  • All traffic routed through VPN tunnel
  • DNS queries resolved through VPN DNS servers

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

This project is licensed under the MIT License.