Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Roxedus/docker-TS-DnsServer
container for TechnitiumSoftware/DnsServer
https://github.com/Roxedus/docker-TS-DnsServer
Last synced: 8 days ago
JSON representation
container for TechnitiumSoftware/DnsServer
- Host: GitHub
- URL: https://github.com/Roxedus/docker-TS-DnsServer
- Owner: Roxedus
- Archived: true
- Created: 2020-01-07T15:15:44.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-06T07:43:33.000Z (almost 2 years ago)
- Last Synced: 2024-08-01T12:22:38.997Z (3 months ago)
- Size: 86.9 KB
- Stars: 5
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [docker-TechnitiumSoftware-DnsServer](https://github.com/Roxedus/docker-TS-DnsServer)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/Roxedus/docker-ts-dnsserver/Build%20Image?style=flat?logo=github)](https://github.com/Roxedus/docker-ts-dnsserver/actions?query=workflow%3A%22Build+Image%22)
[![Docker Pulls](https://img.shields.io/docker/pulls/roxedus/ts-dnsserver?logo=docker)](https://hub.docker.com/r/roxedus/ts-dnsserver/)[Technitium DNS Server](https://github.com/TechnitiumSoftware/DnsServer) is an open source tool that can be used for self hosting a local DNS server for privacy & security or, used for experimentation/testing by software developers on their computer. It works out-of-the-box with no or minimal configuration and provides a user friendly web console accessible using any web browser.
## Setup
Compose example
```yml
dnsserver:
container_name: ts-dnsserver
image: roxedus/ts-dnsserver:latest
ports:
- 53:53/udp
- 5380:5380
volumes:
- ${PWD}/ts-dnsserver:/config
environment:
- PUID=1000
- PGID=1000
```Docker run example
```bash
docker run -p 53:53/udp -p 5380:5380 -v ${PWD}/ts-dnsserver:/config -e PUID=1000 -e PGID=1000 roxedus/ts-dnsserver:latest
```