├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── 1.10.0 ├── Dockerfile ├── a-records.conf ├── forward-records.conf ├── srv-records.conf └── unbound.sh ├── 1.10.1 ├── Dockerfile ├── a-records.conf ├── forward-records.conf ├── srv-records.conf └── unbound.sh ├── 1.11.0 ├── Dockerfile ├── a-records.conf ├── forward-records.conf ├── srv-records.conf └── unbound.sh ├── 1.12.0 ├── Dockerfile ├── a-records.conf ├── forward-records.conf ├── srv-records.conf └── unbound.sh ├── 1.13.0 ├── Dockerfile ├── a-records.conf ├── forward-records.conf ├── srv-records.conf └── unbound.sh ├── 1.13.1 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.13.2 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.14.0 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.15.0 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.16.0 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.16.1 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.16.2 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.16.3 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.17.0 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ ├── srv-records.conf │ │ └── unbound.log │ └── unbound.sh ├── 1.17.1 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.18.0 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.19.0 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.19.1 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.19.2 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.19.3 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.20.0 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.21.0 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.21.1 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.22.0 ├── Dockerfile └── data │ ├── opt │ └── unbound │ │ └── etc │ │ └── unbound │ │ ├── a-records.conf │ │ ├── forward-records.conf │ │ └── srv-records.conf │ └── unbound.sh ├── 1.6.8 ├── Dockerfile ├── a-records.conf └── unbound.sh ├── 1.7.3 ├── Dockerfile ├── a-records.conf └── unbound.sh ├── 1.8.1 ├── Dockerfile ├── a-records.conf └── unbound.sh ├── 1.8.2 ├── Dockerfile ├── a-records.conf └── unbound.sh ├── 1.8.3 ├── Dockerfile ├── a-records.conf └── unbound.sh ├── 1.9.0 ├── Dockerfile ├── a-records.conf └── unbound.sh ├── 1.9.1 ├── Dockerfile ├── a-records.conf └── unbound.sh ├── 1.9.2 ├── Dockerfile ├── a-records.conf └── unbound.sh ├── 1.9.3 ├── Dockerfile ├── a-records.conf └── unbound.sh ├── 1.9.4 ├── Dockerfile ├── a-records.conf └── unbound.sh ├── 1.9.5 ├── Dockerfile ├── a-records.conf └── unbound.sh ├── 1.9.6 ├── Dockerfile ├── a-records.conf └── unbound.sh ├── LICENSE ├── README.md ├── k8s └── deployment.yml └── unbound.conf /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /1.10.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.10.0/Dockerfile -------------------------------------------------------------------------------- /1.10.0/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.10.0/a-records.conf -------------------------------------------------------------------------------- /1.10.0/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.10.0/forward-records.conf -------------------------------------------------------------------------------- /1.10.0/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.10.0/srv-records.conf -------------------------------------------------------------------------------- /1.10.0/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.10.0/unbound.sh -------------------------------------------------------------------------------- /1.10.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.10.1/Dockerfile -------------------------------------------------------------------------------- /1.10.1/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.10.1/a-records.conf -------------------------------------------------------------------------------- /1.10.1/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.10.1/forward-records.conf -------------------------------------------------------------------------------- /1.10.1/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.10.1/srv-records.conf -------------------------------------------------------------------------------- /1.10.1/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.10.1/unbound.sh -------------------------------------------------------------------------------- /1.11.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.11.0/Dockerfile -------------------------------------------------------------------------------- /1.11.0/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.11.0/a-records.conf -------------------------------------------------------------------------------- /1.11.0/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.11.0/forward-records.conf -------------------------------------------------------------------------------- /1.11.0/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.11.0/srv-records.conf -------------------------------------------------------------------------------- /1.11.0/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.11.0/unbound.sh -------------------------------------------------------------------------------- /1.12.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.12.0/Dockerfile -------------------------------------------------------------------------------- /1.12.0/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.12.0/a-records.conf -------------------------------------------------------------------------------- /1.12.0/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.12.0/forward-records.conf -------------------------------------------------------------------------------- /1.12.0/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.12.0/srv-records.conf -------------------------------------------------------------------------------- /1.12.0/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.12.0/unbound.sh -------------------------------------------------------------------------------- /1.13.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.0/Dockerfile -------------------------------------------------------------------------------- /1.13.0/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.0/a-records.conf -------------------------------------------------------------------------------- /1.13.0/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.0/forward-records.conf -------------------------------------------------------------------------------- /1.13.0/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.0/srv-records.conf -------------------------------------------------------------------------------- /1.13.0/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.0/unbound.sh -------------------------------------------------------------------------------- /1.13.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.1/Dockerfile -------------------------------------------------------------------------------- /1.13.1/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.1/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.13.1/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.1/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.13.1/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.1/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.13.1/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.1/data/unbound.sh -------------------------------------------------------------------------------- /1.13.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.2/Dockerfile -------------------------------------------------------------------------------- /1.13.2/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.2/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.13.2/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.2/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.13.2/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.2/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.13.2/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.13.2/data/unbound.sh -------------------------------------------------------------------------------- /1.14.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.14.0/Dockerfile -------------------------------------------------------------------------------- /1.14.0/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.14.0/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.14.0/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.14.0/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.14.0/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.14.0/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.14.0/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.14.0/data/unbound.sh -------------------------------------------------------------------------------- /1.15.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.15.0/Dockerfile -------------------------------------------------------------------------------- /1.15.0/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.15.0/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.15.0/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.15.0/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.15.0/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.15.0/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.15.0/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.15.0/data/unbound.sh -------------------------------------------------------------------------------- /1.16.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.0/Dockerfile -------------------------------------------------------------------------------- /1.16.0/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.0/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.16.0/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.0/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.16.0/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.0/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.16.0/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.0/data/unbound.sh -------------------------------------------------------------------------------- /1.16.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.1/Dockerfile -------------------------------------------------------------------------------- /1.16.1/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.1/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.16.1/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.1/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.16.1/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.1/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.16.1/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.1/data/unbound.sh -------------------------------------------------------------------------------- /1.16.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.2/Dockerfile -------------------------------------------------------------------------------- /1.16.2/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.2/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.16.2/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.2/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.16.2/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.2/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.16.2/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.2/data/unbound.sh -------------------------------------------------------------------------------- /1.16.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.3/Dockerfile -------------------------------------------------------------------------------- /1.16.3/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.3/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.16.3/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.3/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.16.3/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.3/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.16.3/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.16.3/data/unbound.sh -------------------------------------------------------------------------------- /1.17.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.17.0/Dockerfile -------------------------------------------------------------------------------- /1.17.0/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.17.0/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.17.0/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.17.0/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.17.0/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.17.0/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.17.0/data/opt/unbound/etc/unbound/unbound.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.17.0/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.17.0/data/unbound.sh -------------------------------------------------------------------------------- /1.17.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.17.1/Dockerfile -------------------------------------------------------------------------------- /1.17.1/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.17.1/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.17.1/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.17.1/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.17.1/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.17.1/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.17.1/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.17.1/data/unbound.sh -------------------------------------------------------------------------------- /1.18.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.18.0/Dockerfile -------------------------------------------------------------------------------- /1.18.0/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.18.0/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.18.0/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.18.0/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.18.0/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.18.0/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.18.0/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.18.0/data/unbound.sh -------------------------------------------------------------------------------- /1.19.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.0/Dockerfile -------------------------------------------------------------------------------- /1.19.0/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.0/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.19.0/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.0/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.19.0/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.0/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.19.0/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.0/data/unbound.sh -------------------------------------------------------------------------------- /1.19.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.1/Dockerfile -------------------------------------------------------------------------------- /1.19.1/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.1/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.19.1/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.1/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.19.1/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.1/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.19.1/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.1/data/unbound.sh -------------------------------------------------------------------------------- /1.19.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.2/Dockerfile -------------------------------------------------------------------------------- /1.19.2/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.2/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.19.2/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.2/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.19.2/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.2/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.19.2/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.2/data/unbound.sh -------------------------------------------------------------------------------- /1.19.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.3/Dockerfile -------------------------------------------------------------------------------- /1.19.3/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.3/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.19.3/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.3/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.19.3/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.3/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.19.3/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.19.3/data/unbound.sh -------------------------------------------------------------------------------- /1.20.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.20.0/Dockerfile -------------------------------------------------------------------------------- /1.20.0/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.20.0/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.20.0/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.20.0/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.20.0/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.20.0/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.20.0/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.20.0/data/unbound.sh -------------------------------------------------------------------------------- /1.21.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.21.0/Dockerfile -------------------------------------------------------------------------------- /1.21.0/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.21.0/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.21.0/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.21.0/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.21.0/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.21.0/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.21.0/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.21.0/data/unbound.sh -------------------------------------------------------------------------------- /1.21.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.21.1/Dockerfile -------------------------------------------------------------------------------- /1.21.1/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.21.1/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.21.1/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.21.1/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.21.1/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.21.1/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.21.1/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.21.1/data/unbound.sh -------------------------------------------------------------------------------- /1.22.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.22.0/Dockerfile -------------------------------------------------------------------------------- /1.22.0/data/opt/unbound/etc/unbound/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.22.0/data/opt/unbound/etc/unbound/a-records.conf -------------------------------------------------------------------------------- /1.22.0/data/opt/unbound/etc/unbound/forward-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.22.0/data/opt/unbound/etc/unbound/forward-records.conf -------------------------------------------------------------------------------- /1.22.0/data/opt/unbound/etc/unbound/srv-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.22.0/data/opt/unbound/etc/unbound/srv-records.conf -------------------------------------------------------------------------------- /1.22.0/data/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.22.0/data/unbound.sh -------------------------------------------------------------------------------- /1.6.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.6.8/Dockerfile -------------------------------------------------------------------------------- /1.6.8/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.6.8/a-records.conf -------------------------------------------------------------------------------- /1.6.8/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.6.8/unbound.sh -------------------------------------------------------------------------------- /1.7.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.7.3/Dockerfile -------------------------------------------------------------------------------- /1.7.3/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.7.3/a-records.conf -------------------------------------------------------------------------------- /1.7.3/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.7.3/unbound.sh -------------------------------------------------------------------------------- /1.8.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.8.1/Dockerfile -------------------------------------------------------------------------------- /1.8.1/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.8.1/a-records.conf -------------------------------------------------------------------------------- /1.8.1/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.8.1/unbound.sh -------------------------------------------------------------------------------- /1.8.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.8.2/Dockerfile -------------------------------------------------------------------------------- /1.8.2/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.8.2/a-records.conf -------------------------------------------------------------------------------- /1.8.2/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.8.2/unbound.sh -------------------------------------------------------------------------------- /1.8.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.8.3/Dockerfile -------------------------------------------------------------------------------- /1.8.3/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.8.3/a-records.conf -------------------------------------------------------------------------------- /1.8.3/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.8.3/unbound.sh -------------------------------------------------------------------------------- /1.9.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.0/Dockerfile -------------------------------------------------------------------------------- /1.9.0/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.0/a-records.conf -------------------------------------------------------------------------------- /1.9.0/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.0/unbound.sh -------------------------------------------------------------------------------- /1.9.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.1/Dockerfile -------------------------------------------------------------------------------- /1.9.1/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.1/a-records.conf -------------------------------------------------------------------------------- /1.9.1/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.1/unbound.sh -------------------------------------------------------------------------------- /1.9.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.2/Dockerfile -------------------------------------------------------------------------------- /1.9.2/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.2/a-records.conf -------------------------------------------------------------------------------- /1.9.2/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.2/unbound.sh -------------------------------------------------------------------------------- /1.9.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.3/Dockerfile -------------------------------------------------------------------------------- /1.9.3/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.3/a-records.conf -------------------------------------------------------------------------------- /1.9.3/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.3/unbound.sh -------------------------------------------------------------------------------- /1.9.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.4/Dockerfile -------------------------------------------------------------------------------- /1.9.4/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.4/a-records.conf -------------------------------------------------------------------------------- /1.9.4/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.4/unbound.sh -------------------------------------------------------------------------------- /1.9.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.5/Dockerfile -------------------------------------------------------------------------------- /1.9.5/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.5/a-records.conf -------------------------------------------------------------------------------- /1.9.5/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.5/unbound.sh -------------------------------------------------------------------------------- /1.9.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.6/Dockerfile -------------------------------------------------------------------------------- /1.9.6/a-records.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.6/a-records.conf -------------------------------------------------------------------------------- /1.9.6/unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/1.9.6/unbound.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/README.md -------------------------------------------------------------------------------- /k8s/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/k8s/deployment.yml -------------------------------------------------------------------------------- /unbound.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVance/unbound-docker/HEAD/unbound.conf --------------------------------------------------------------------------------