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

https://github.com/docksal/service-dns

DNS discovery service image for Docksal
https://github.com/docksal/service-dns

Last synced: 4 months ago
JSON representation

DNS discovery service image for Docksal

Awesome Lists containing this project

README

          

# DNS Docker image for Docksal

This image(s) is part of the [Docksal](http://docksal.io) image library.

Provides wildcard domain name resolution for local development.

## Usage

```bash
$ docker run --name dns -d -e DNS_DOMAIN=docksal -e DNS_IP=192.168.64.100 docksal/dns

$ nslookup something.docksal 192.168.64.100
Server: 192.168.64.100
Address: 192.168.64.100#53

Name: something.docksal
Address: 192.168.64.100
```

Replace `192.168.64.100` with your Docker host IP.

## Debugging

Launch the container with `LOG_QUERIES=true` to enabled query logging.

```bash
docker run --name dns -d -e DNS_DOMAIN=docksal -e DNS_IP=192.168.100.64 -e LOG_QUERIES=true docksal/dns
```

View logs with `docker logs dns`