lezamin/socks5

By lezamin

Updated almost 2 years ago

This image features microsocks, a C-based SOCKS5 proxy implementation developed by rofl0r.

Image
Networking
0

10K+

lezamin/socks5 repository overview

Full documentation available here.

microsocks by rofl0r is a lightweight, open-source SOCKS5 proxy written in C. Designed for efficiency and simplicity, it offers:

  • Minimal resource usage
  • IPv4 and IPv6 compatibility
  • Single binary deployment
  • Configurable listening port

It's ideal for users seeking a straightforward, an efficient and very lightweight socks5 server solution.

Binary location in the container: /usr/local/bin/microsocks

Run the following command, ensuring you replace -p 10374:443 and -p 10374:443/udp with your desired values, and set a strong username and password for proper functionality:

docker run --name socks5 \
  --restart unless-stopped \
  -p 10374:443 \
  -p 10374:443/udp \
  -dt lezamin/socks5:latest -u username -P password -p 443

docker-compose.yaml

version: '3.8'
services:
  socks5:
    image: lezamin/socks5:latest
    container_name: socks5
    restart: unless-stopped
    ports:
      - "10374:443"
      - "10374:443/udp"
    command: ["-u", "username", "-P", "password", "-p", "443"]
    tty: true

Tag summary

Content type

Image

Digest

sha256:fe9ae262d

Size

3.5 MB

Last updated

almost 2 years ago

docker pull lezamin/socks5