Adding proxy-socks5 configuration draft.
This commit is contained in:
commit
41a5646f0f
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/.idea
|
4
proxy-socks5/.env.dist
Normal file
4
proxy-socks5/.env.dist
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# Proxy configuration variables
|
||||||
|
# see https://hub.docker.com/r/serjs/go-socks5-proxy
|
||||||
|
PROXY_USER=skobkin
|
||||||
|
PROXY_PASSWORD=xxx
|
1
proxy-socks5/.gitignore
vendored
Normal file
1
proxy-socks5/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.env
|
10
proxy-socks5/docker-compose.yml
Normal file
10
proxy-socks5/docker-compose.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
version: '3.7'
|
||||||
|
|
||||||
|
services:
|
||||||
|
socks5:
|
||||||
|
image: serjs/go-socks5-proxy:latest
|
||||||
|
container_name: proxy-socks5
|
||||||
|
ports:
|
||||||
|
- "2080:1080/tcp"
|
||||||
|
env_file: .env
|
||||||
|
restart: unless-stopped
|
Loading…
Reference in a new issue