Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eronana/homedns
https://github.com/eronana/homedns
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/eronana/homedns
- Owner: Eronana
- Created: 2024-05-08T19:02:34.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-05-10T18:44:36.000Z (6 months ago)
- Last Synced: 2024-10-20T14:28:35.597Z (18 days ago)
- Language: HTML
- Size: 240 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
homedns
----A DNS server with a webui to CRUD DNS records(only support A records).
The code of the project is generated by ChatGPT.## Usage
```bash
docker build -t homedns .
echo '{}' >> data.json
docker run -d --name homedns -p 53:53/udp -p 3000:3000 -v $(pwd)/data.json:/data.json -e DNS_RECORDS_FILE=/data.json homedns
```Open http://127.0.0.1:3000 to add some DNS records and run `nslookup your.domain.name 127.0.0.1` to test it.
## Screenshot
![](./screenshot_0.png)