add docker-compose and .env files

This commit is contained in:
noizo 2018-12-16 12:19:24 +01:00
parent 2d33041af0
commit d3100076a7
2 changed files with 12 additions and 0 deletions

3
.env Normal file
View File

@ -0,0 +1,3 @@
PROXY_USER=someuser
PROXY_PASSWORD=somepass
PROXY_PORT=1080

9
docker-compose.yml Normal file
View File

@ -0,0 +1,9 @@
version: '3'
services:
socks5:
restart: always
image: serjs/go-socks5-proxy
env_file: .env
ports:
- "1080:1080"