commit 0cad1a6b8b950e4824b353c453e43e6f0efd208b Author: gsd Date: Mon Oct 14 19:43:28 2024 +0300 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fee9217 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.conf diff --git a/README b/README new file mode 100644 index 0000000..a518574 --- /dev/null +++ b/README @@ -0,0 +1,3 @@ +https://git.pblr-nyk.pro/mirror/docker-wireguard +https://git.pblr-nyk.pro/mirror/socks-to-http-proxy +https://git.pblr-nyk.pro/mirror/docker-socks5 diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..132da84 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,58 @@ +services: + proxywg_http: + build: + context: ./socks2http + dockerfile: Dockerfile + #ports: + # - 3128:3128 + command: -p 3128 -s 127.0.0.1:1080 --listen-ip 0.0.0.0 + network_mode: service:proxywg_client + depends_on: + - proxywg_socks + deploy: + resources: + limits: + cpus: "0.5" + memory: 512M + restart: unless-stopped + + proxywg_socks: + container_name: proxywg_socks_c + build: + context: ./docker-socks5 + dockerfile: Dockerfile + volumes: + - $PWD/docker-socks5/sockd.conf:/etc/sockd.conf:ro + #ports: + # - 1080:1080 + depends_on: + - proxywg_client + network_mode: service:proxywg_client + deploy: + resources: + limits: + cpus: "0.5" + memory: 512M + restart: unless-stopped + + proxywg_client: + image: wireguard:clear + cap_add: + - NET_ADMIN + - SYS_MODULE + ports: + - 1080:1080 + - 3128:3128 + environment: + - LOCAL_SUBNETS=192.168.3.0/24 + sysctls: + net.ipv4.conf.all.src_valid_mark: 1 + volumes: + - $PWD/proxy.wg.conf:/etc/wireguard/wg0.conf + deploy: + resources: + limits: + cpus: "0.5" + memory: 512M + restart: unless-stopped + diff --git a/docker-socks5 b/docker-socks5 new file mode 160000 index 0000000..bab629b --- /dev/null +++ b/docker-socks5 @@ -0,0 +1 @@ +Subproject commit bab629b81d3eaccd1eab0cf01a6385f901159e9d diff --git a/socks2http/Dockerfile b/socks2http/Dockerfile new file mode 100644 index 0000000..41cc824 --- /dev/null +++ b/socks2http/Dockerfile @@ -0,0 +1,10 @@ +FROM docker.pblr-nyk.pro/ubuntu:22.04 +RUN apt-get update \ + && apt-get install -y wget \ + && mkdir -p /opt/sthp \ + && cd /opt/sthp \ + && wget https://github.com/KaranGauswami/socks-to-http-proxy/releases/download/v0.5.0-alpha2/sthp-linux \ + && chmod +x sthp-linux \ + && rm -rf /var/lib/{apt,dpkg,cache,log}/ +WORKDIR /opt/sthp +ENTRYPOINT ["/opt/sthp/sthp-linux"]