İçeriğe geç

Install Pi-Hole with Custom Templates on Portainer

version: '2'

services:
  pihole:
    container_name: pihole
    image: pihole/pihole:latest
    hostname: pihole.local
    group_add:
      - www-data
    cap_add:
      - NET_ADMIN
    dns:
      - 127.0.0.1
      - 1.1.1.1
    ports:
      - 443:443/tcp
      - 53:53/tcp
      - 53:53/udp
      - 67:67/udp
      - 88:80/tcp
    environment:
      VIRTUAL_HOST: pihole.local 
      WEBPASSWORD: "1q2w3e4r" 
    restart: unless-stopped
    volumes:
      - '/storage/pihole/config:/etc/pihole/'
      - '/storage/pihole/etc-dnsmasq.d/:/etc/dnsmasq.d/'

Raspberry Pi 3 için Libreelec üzerinde çalışan Portainer ‘e Docker ile üzerinde kurulan Pi-Hole Template’i

Açıklaması biraz karışık oldu, kusuruma bakmayın 😀

Kategori:LinuxRaspberry Pi

İlk Yorumu Siz Yapın

Bir cevap yazın

E-posta hesabınız yayımlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir