Adding proxy-socks5 configuration draft.

This commit is contained in:
Alexey Skobkin 2019-04-10 20:36:16 +03:00
commit 41a5646f0f
4 changed files with 16 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/.idea

4
proxy-socks5/.env.dist Normal file
View 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
View File

@ -0,0 +1 @@
.env

View 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