You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First off, thank you for the work you've done to make and maintain this image. I'm hoping there's just something simple that I missed in trying to get things running.
edit: I'm installing on a rpi4 with bookworm
edit#2: I am attempting to run Unbound as a recursive server
I'm using docker compose, and the issue I'm having is after starting the container, listing the container always shows the Status as "Restarting (1)" and never in an up and healthy status. Attempting to look at the logs using docker compose logs -f [service] provides no output to the terminal.
Output when starting the container in the background:
Output when starting the container in the foreground:
First off, thank you for the work you've done to make and maintain this image. I'm hoping there's just something simple that I missed in trying to get things running.
edit: I'm installing on a rpi4 with bookworm
edit#2: I am attempting to run Unbound as a recursive server
I'm using docker compose, and the issue I'm having is after starting the container, listing the container always shows the Status as "Restarting (1)" and never in an up and healthy status. Attempting to look at the logs using
docker compose logs -f [service]
provides no output to the terminal.Output when starting the container in the background:
Output when starting the container in the foreground:
Output when listing the container:
I'm attempting to use a custom "unbound.conf" file, and believe I have followed the instructions in the guide for a customized Unbound configuration correctly?
My file structure (before starting the container) is:
After starting the container, two directories and one .pid file are added to the /home/unbound directory: dev, var, and unbound.pid
Here is my compose.yml:
services:
unbound:
container_name: unbound
image: mvance/unbound-rpi:latest
ports:
- "5335:53/tcp"
- "5335:53/udp"
volumes:
- '/home/unbound:/opt/unbound/etc/unbound/'
restart: unless-stopped
Here is my unbound.conf:
server:
verbosity: 1
interface: 0.0.0.0
port: 53
do-ip4: yes
do-udp: yes
do-tcp: yes
access-control: [my_ip_range] allow
do-ip6: no
prefer-ip6: no
root-hints: "/home/unbound/root.hints"
harden-glue: yes
harden-dnssec-stripped: yes
use-caps-for-id: no
edns-buffer-size: 1232
prefetch: yes
num-threads: 1
private-address: 192.168.0.0/16
private-address: 169.254.0.0/16
private-address: 172.16.0.0/12
private-address: 10.0.0.0/8
private-address: fd00::/8
private-address: fe80::/10
Thank you for your help!
The text was updated successfully, but these errors were encountered: