https://github.com/doorbash/butcher
yet another simple DNS load balancer. A Golang port of https://github.com/kooroshh/Butcher
https://github.com/doorbash/butcher
dns-load-balancer loadbalancer
Last synced: 10 days ago
JSON representation
yet another simple DNS load balancer. A Golang port of https://github.com/kooroshh/Butcher
- Host: GitHub
- URL: https://github.com/doorbash/butcher
- Owner: doorbash
- License: mit
- Created: 2021-08-06T23:58:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-09T21:57:25.000Z (over 4 years ago)
- Last Synced: 2025-12-28T09:48:26.831Z (4 months ago)
- Topics: dns-load-balancer, loadbalancer
- Language: Go
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Build
```
go build
```
## Usage
```
butcher [OPTIONS] address
Application Options:
-c, --config= config path
Help Options:
-h, --help Show this help message
```
## Example
```
./butcher -c config.json 0.0.0.0:53
```
**Docker:**
```
docker run --name butcher --restart always -d -v $(pwd)/config.json:/config.json:ro -p 53:53/udp ghcr.io/doorbash/butcher:latest
```