I have followed the instructions as per the wiki on setting up Pi and it works great!
Now I would like to setup Unbound as a container for a DNS solution but can't find any information on how to do this on the Mikrotik.
Any help would be appreciated!
Just a recursive caching DNS server?
A simple unbound container can be found at:
https://github.com/elico/unbound-container
Example on how to deploy it:
/interface/bridge/add name=dockers
/ip/address/add address=172.20.0.254/24 interface=dockers
/interface/veth/add name=veth53 address=172.20.0.53/24 gateway=172.20.0.254
/interface/bridge/port add bridge=dockers interface=veth53
/container/config/set registry-url=https://registry-1.docker.io tmpdir=disk1/pull
/container/envs/add name=unbound_envs key=TZ value="Asia/Jerusalem"
/container/add dns=172.20.0.254 remote-image=elicro/unbound:latest interface=veth53 root-dir=disk1/unbound envlist=unbound_envs start-on-boot=yes
Works like a charm.