An open API service indexing awesome lists of open source software.

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

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
```