arevindh / pihole-speedtest

Pihole Speedtest Mod
https://arevindh.github.io/pihole-speedtest/
MIT License
218 stars 22 forks source link

Any docker image available? #97

Closed C-Fu closed 2 years ago

C-Fu commented 2 years ago

Please consider, thanks!

corasaniti commented 2 years ago

@C-Fu You can perform the installation steps within the official Docker image. And if you wish to commit your changes so that you have your Docker image modified. I did it and it works perfectly

corasaniti commented 2 years ago

however I have many problems applying the installation in docker. So I abandoned the mod. I am very sorry because it is very beautiful A docker image would therefore be welcome. please build docker image :-) Thanks

arevindh commented 2 years ago

however I have many problems applying the installation in docker. So I abandoned the mod. I am very sorry because it is very beautiful A docker image would therefore be welcome. please build docker image :-) Thanks

@corasaniti It is getting updated every release.

arevindh commented 2 years ago

@C-Fu I'm currently working on docker images. Might take a week .

arevindh commented 2 years ago

Try this

version: "3"

# More info at https://github.com/arevindh/docker-pi-hole/ and https://docs.pi-hole.net/
services:
  pihole:
    container_name: pihole
    image: arevindh/pihole:v5.9
    ports:
      - "53:53/tcp"
      - "53:53/udp"
      - "67:67/udp"
      - "80:80/tcp"
    environment:
      TZ: 'America/Chicago'
      # WEBPASSWORD: 'set a secure password here or it will be random'
    # Volumes store your data between container upgrades
    volumes:
      - './etc-pihole:/etc/pihole'
      - './etc-dnsmasq.d:/etc/dnsmasq.d'
    # Recommended but not required (DHCP needs NET_ADMIN)
    #   https://github.com/arevindh/docker-pi-hole#note-on-capabilities
    cap_add:
      - NET_ADMIN
    restart: unless-stopped
corasaniti commented 2 years ago

This Docker image (arevindh/pihole: v5.9) includes speedtest mod? But it's great thanks Happy New Year...

arevindh commented 2 years ago

This Docker image (arevindh/pihole: v5.9) includes speedtest mod? But it's great thanks Happy New Year...

Yes, first build, if things do not workout create a new ticket

corasaniti commented 2 years ago

Hi, seems to work well I will keep it monitored for a few days. Congratulations

corasaniti commented 2 years ago

I'd like to set the time zone to Europe/Rome. I entered it as a parameter in the docker-compose

TZ: 'Europe/Rome'

but the graph is always one hour behind the time in Rome. How can I do? Thank you

arevindh commented 2 years ago

@corasaniti please create a separate issue for this, it will be easier to track for me.