Socks5 proxy with LDAP authentication
7.3K
Socks5 proxy with LDAP authentication
---
version: '3'
services:
socks-ldap:
image: archef2000/go-socks-ldap:latest
container_name: socks-ldap
ports:
- 1080:1080/tcp
environment:
- LDAP_HOST=ldap://ldap.host:389
- LDAP_USER=cn=admin,ou=people,dc=example,dc=com
- LDAP_PASS=password
- LDAP_BASE_DN=ou=people,dc=example,dc=com
- LDAP_USER_FILTER=(&(objectClass=person)(memberOf=cn=socks,ou=groups,dc=example,dc=com))
- TLS_ENABLED=false
- TLS_SKIP_VERIFY=false
- SERVER_PORT=1080
- SERVER_HOST=0.0.0.0
restart: always
---
version: '3'
services:
socks-ldap:
image: archef2000/go-socks-ldap:latest
container_name: socks-ldap
ports:
- 1080:1080/tcp
command: ["-config","/config.yaml"]
volumes:
- ./config.yaml:/config.yaml
restart: always
Content type
Image
Digest
sha256:d1f63023d…
Size
4.4 MB
Last updated
7 days ago
docker pull archef2000/go-socks-ldap