Hi I am using a Raspberry Pi 3 with Openmediavault.
I have just today installed fresh OMV using Raspberry OS 64bit base image and the latest OMV 6.
I am trying to spawn a Pihole container using the simple setup that is on the Github readme of docker-pi-hole: GitHub - pi-hole/docker-pi-hole: Pi-hole in a docker container
(my previous setup was more complicated with macvlan etc, I tried to diagnose but I decided to start fresh to narrow down the issue).
I have on purpose changed the default port of OMV from :80 to :83 to allow pihole to use the :80
Expected Behaviour:
I expect pi-hole to start normally
-operating system : Linux mars 6.1.21-v8+ #1642 SMP PREEMPT Mon Apr 3 17:24:16 BST 2023 aarch64 GNU/Linux
-hardware: Raspberry Pi
version: "3"
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
services:
pihole:
container_name: pihole3
image: pihole/pihole:latest
# For DHCP it is recommended to remove these ports and instead add: network_mode: "host"
ports:
- "53:53/tcp"
- "53:53/udp"
- "67:67/udp" # Only required if you are using Pi-hole as your DHCP server
- "80:80/tcp"
environment:
TZ: 'Europe/Rome'
WEBPASSWORD: '12345' #'set a secure password here or it will be random'
IPv6: "false"
FTLCONF_LOCAL_IPV4: 192.168.10.110
# Volumes store your data between container upgrades
network_mode: host
volumes:
- '/docker/SSD/appdata/pihole8/etc-pihole:/etc/pihole'
- '/docker/SSD/appdata/pihole8/etc-dnsmasq.d:/etc/dnsmasq.d'
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
restart: unless-stopped
I don't know how to explain it, I am using the pihole/pihole:latest
The folder /etc/lighttpd/conf-enabled should be part of the default image, right?
I have deleted the pihole image and repulled it, started the container and checked that folder:
The host OS does not have the /run/lighttpd folder.
Did you mean to check within the container instead?
Within the pihole container I don't have the command getfacl command and apt-get is not able to install it..
should I try anything else?