Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wfg/docker-socks5-server
SOCKS5 server
https://github.com/wfg/docker-socks5-server
docker proxy socks5 socks5-proxy
Last synced: 6 days ago
JSON representation
SOCKS5 server
- Host: GitHub
- URL: https://github.com/wfg/docker-socks5-server
- Owner: wfg
- License: mit
- Created: 2023-02-09T01:53:45.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-28T15:37:36.000Z (12 months ago)
- Last Synced: 2024-11-12T22:42:12.599Z (2 months ago)
- Topics: docker, proxy, socks5, socks5-proxy
- Language: Go
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Containerized SOCKS5 Proxy Server
## How do I use it?
### Getting the image
You can either pull it from GitHub Container Registry or build it yourself.To pull it from GitHub Container Registry, run
```
docker pull ghcr.io/wfg/socks5-server
```To build it yourself, run
```
docker build -t ghcr.io/wfg/socks5-server https://github.com/wfg/docker-socks5-server.git#:build
```### Creating and running a container
By default, the image listens on 0.0.0.0:1080 with no authentication.
This is configurable today if you pass in the appropriate flags.
More documentation is coming soon (hopefully).#### `docker run`
```
docker run --detach \
--name=socks5-server \
ghcr.io/wfg/socks5-server
```#### `docker-compose`
```yaml
services:
socks5-server:
image: ghcr.io/wfg/socks5-server
container_name: socks5-server
restart: unless-stopped
```