Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hardillb/gofingerd
https://github.com/hardillb/gofingerd
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hardillb/gofingerd
- Owner: hardillb
- License: apache-2.0
- Created: 2021-07-11T21:42:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-15T16:32:24.000Z (4 months ago)
- Last Synced: 2024-10-13T16:11:32.684Z (3 months ago)
- Language: Go
- Size: 18.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Finger Daemon in Go
A simple Finger Daemon written in Go.
Inspired by [Happy Net Box](happynetbox.com)
## Build
Checkout the project and run
```bash
$ go build -v
```## Run
This application need to bind to port 79 which normally requires root access. You can get round this by running
the following command```bash
$ sudo setcap CAP_NET_BIND_SERVICE=+eip fingerd
```This will grant the `fingerd` binary the ability to open port 79 as a normal user
```bash
$ ./fingerd
```### Docker
```bash
$ docker build . -t fingerd
``````bash
$ docker run -d -v /path/to/plans:/root/plans -p 79:79 fingerd```