Copy docker-compose.yml.example to docker-compose.yml and update as needed. See example below:Docker-composeexample: #More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/services:pihole:container_name:piholeimage:pihole/pihole:latest#For DHCP it is recom...
FROM pihole/pihole:latest RUN apt-get update && apt-get install -Vy wget php-cli php-sqlite3 php-intl php-curl RUN wget -O - https://raw.githubusercontent.com/jacklul/pihole-updatelists/master/install.sh | bash -s docker Then build your image locally and use that image in yourdoc...
If you installed Pi-hole using either Podman or Docker, all you can do initially is to pull the image. ⚠️ If you used adocker-compose.ymlfile to create your container, please have it handy because we need to delete the current container and create a new one. (No data or configur...
docker-compose文件 mkdir -p /opt/pihole/etc-dnsmasq.d mkdir -p /opt/pihole/etc-pihole/migration_backup mkdir -p /opt/pihole/log cat > /opt/piholeDNS.yaml<<'EOF' version: '3' services: dns: image: pihole/pihole:latest # https://github.com/pi-hole/docker-pi-hole container_name...
Go toFile Stationand open the docker folder. Inside the docker folder, create one new folder and name itpihole. Follow the instructions in the image below. Note: Be careful to enter only lowercase, not uppercase letters. STEP 5 Now create two new folders inside thepiholefolder that you ...
Install Adguard Home with Docker Compose You can also use Docker Compose to install Adguard. adguard: image: adguard/adguardhome restart: always ports: - 53:53/tcp - 53:53/udp - 67:67/udp - 853:853/tcp - 853:853/udp - 3000:3000/tcp - 5443:5443/tcp - 5443:5443/udp - 8853:8853...
Excalidraw Whiteboard: Ultimate Docker Self-hosted Home lab Diagramming April 26, 2023 CasaOS: Best Home Server Operating System August 31, 2023 Homarr: Sleek Home Lab Dashboard for Server Monitoring June 29, 2023 Leave a Reply Your email address will not be published. Required fields are...
You want to run a minecraft server on your cluster. Now think about all the other people in the world who run Minecraft servers. How many of these people not only run a Minecraft server, but run it in a Docker container... in a Kubernetes cluster... on a Raspberry Pi, which mig...
version:"3"# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/services: pihole: container_name: pihole image: pihole/pihole:latest ports: -"53:53/tcp"-"53:53/udp"-"6767:6767/udp"-"80:80/tcp"-"443:443/tcp"environment: ...
Copy docker-compose.yml.example to docker-compose.yml and update as needed. See example below: Docker-compose example: version: "3" # More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/ services: pihole: container_name: pihole image: pihole/pihole...