FTL offline on PI4 docker

Hello,

I'm using pihole on a PI4 within a docker container, and lately I'm expecting intermittent "FTL offline" problems.
Previously a docker container restart was enough to get it back to work, but not anymore.
Only recent change was a Gravity update...

Any idea, suggestion ?
Thanks for your help.
Denis

Debug Token:

https://tricorder.pi-hole.net/89gz75ltsv

Please provide the information requested below:

1. Environment data
  * Operating System: **ENTER HERE** <!-- Debian, Ubuntu, Rasbian, etc -->
  * Hardware: <!-- PC, RasPi B/2B/3B/4B, Mac, Synology, QNAP, etc -->
  * Kernel Architecture: <!-- x86/amd64, ArmV7, ArmV8 32bit, ArmV8 64bit, etc -->
  * Docker Install Info and version: 
    - Software source: <!-- official docker-ce, OS provided package, Hypriot -->
    - Supplimentary Software: <!-- synology, portainer, etc -->
  * Hardware architecture: <!-- ARMv7, x86 -->

2. docker-compose.yml contents, docker run shell command, or paste a screenshot of any UI based configuration of containers here
3. any additional info to help reproduce

Sorry for the late reply...
Here it is.
Don't have any step to help to reproduce the problem, it's now random again...

  • Operating System: Rasbian
    • Hardware: RasPi 4B
    • Kernel Architecture: ArmV8 32bit
    • Docker Install Info and version:
      • Software source: official docker-ce
      • Supplimentary Software: portainer, homebridge,
    • Hardware architecture: ARM
  version: '3.3'
services:
  deluge:
    container_name: deluge
    image: linuxserver/deluge:latest
    restart: unless-stopped
    network_mode: host
    environment:
      - PUID=1000 # default user id, for downloaded files access rights
      - PGID=1000 # default group id, for downloaded files access rights
      - TZ=Europe/Paris # timezone
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - /mnt/nas/Telechargements:/downloads  # download folder
      - /mnt/nas/bittorrent:/bittorrent
      - /mnt/nas/Musique/Music:/music
      - ${HOME}/.config/deluge:/config # config files

  nodered:
    container_name: nodered
    image: nodered/node-red:latest
    environment:
      - PUID=1000 # default user id
      - PGID=1000 # default group id
      - TZ=Europe/Paris
    ports:
      - "1880:1880"
    network_mode: host
    volumes:
      - ${HOME}/node-red/data:/data
pihole:
    image: pihole/pihole:latest
    container_name: pihole
    ports:
      - "53:53/tcp"
      - "53:53/udp"
      - "67:67/udp"
      - "80:80/tcp"
      - "443:443/tcp"
    environment:
      TZ: "Europe/Paris"
      WEBPASSWORD: 'password'
    volumes:
      - "./etc-pihole/:/etc/pihole"
      - "./etc-dnsmasq.d/:/etc/dnsmasq.d"
    dns:
      - 127.0.0.1
      - 1.1.1.1
    cap_add:
      - NET_ADMIN 
    restart: unless-stopped

  portainer:
    container_name: portainer
    image: portainer/portainer-ce
    restart: unless-stopped
    command: -H unix:///var/run/docker.sock
    ports:
      - 9000:9000
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock:ro
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
      - /mnt/nas/PI:/data

  homeassistant:
    container_name: home-assistant
    image: homeassistant/home-assistant:stable
    volumes:
      - .config:/home_assistant
    environment:
      - PGID=1000
      - PUID=1000
      - TZ=Europe/Paris # timezone
    restart: always
    network_mode: host

  homebridge:
    image: oznu/homebridge:raspberry-pi
    container_name: homebridge
    restart: always
    network_mode: host
    volumes:
      - ./config:/homebridge
    environment:
      - PGID=1000
      - PUID=1000
      - HOMEBRIDGE_CONFIG_UI=1
      - HOMEBRIDGE_CONFIG_UI_PORT=8080

  airconnect:
    image: psychlist/docker-airconnect-arm
    container_name: airconnect
    restart: always
    network_mode: host
    volumes:
      - ./config:/airconnect
    environment:
      - PGID=1000
      - PUID=1000
      - TZ=Europe/Paris # timezone

  jackett:
    container_name: jackett
    image: linuxserver/jackett:latest
    restart: unless-stopped
    network_mode: host
    environment:
      - PUID=1000 # default user id, for downloaded files access rights
      - PGID=1000 # default group id, for downloaded files access rights
      - TZ=Europe/Paris # timezone
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - /mnt/nas/bittorrent:/downloads # place where to put .torrent files
      - ${HOME}/.config/jackett:/config # config files

  sonarr:
    container_name: sonarr
    image: linuxserver/sonarr:latest
    restart: unless-stopped
    network_mode: host
    environment:
      - PUID=1000 # default user id, for downloaded files access rights
      - PGID=1000 # default group id, for downloaded files access rights
      - TZ=Europe/Paris # timezone
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - ${HOME}/.config/sonarr:/config # config files
      - /mnt/nas/Series:/tv # tv shows folder
      - /mnt/nas/bittorrent:/bittorrent
      - /mnt/nas/Telechargements:/downloads # download folder

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.