Created
April 16, 2018 14:28
-
-
Save voynovia/6f00ed6b10d23365cc4db1b1eea6b4a9 to your computer and use it in GitHub Desktop.
Dante - A free SOCKS server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3" | |
| services: | |
| proxy: | |
| image: vimagick/dante | |
| restart: always | |
| ports: | |
| - "1080:1080" | |
| command: > | |
| /bin/bash -c " | |
| useradd -M socks; | |
| sed -ri 's/^socksmethod.*/socksmethod: username/' /etc/sockd.conf; | |
| echo socks:g4PLDGKAneNg | chpasswd; | |
| sockd; | |
| " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment