Merge pull request #9 from noizo/master

add docker-compose and .env files
This commit is contained in:
Sergey Bogatyrets 2021-07-07 19:35:28 +03:00 committed by GitHub
commit 76cd1a28e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"