No internet access from Home Assistant Docker Container

I currently have a very strange issue where all external services have stopped working.
I have narrowed it down to my Docker not being able to access the internet (Confirmed with PING via SSH)

I have deleted and recreated the Docker with no success (when connecting to existing /config directory).

If I create a new container it works fine, but seems to not work when connecting to existing configuration.
Any suggestion on what file within my configuration (or .storage) directory that may cause such an error?

I would like to retain my existing devices and not have to set everything up again - if possible.

Details might help

Example service and ‘since when/what’ … things donot stop like that so something must have changed

Docker stack/compose/setup

Paste configuration.yaml (obfuscate any private data/id in there)

Hello, any news here? I am having the same problem. My host has internet access, my container not. here’s my configuration:

  homeassistant:
    container_name: hass
    image: homeassistant/home-assistant
    volumes:
      - ./hass-config:/config
      - /etc/localtime:/etc/localtime:ro
    restart: unless-stopped
    network_mode: host
#    networks:
#      t2_proxy:
#        ipv4_address: 192.168.90.90 # You can specify a static IP
    depends_on:
      - mariadb
      - mosquitto
  hass-configurator:
    image: "causticlab/hass-configurator-docker:x86_64"
    container_name: hass-configurator
    restart: unless-stopped
    ports:
      - "3218:3218/tcp"
    depends_on:
      - homeassistant
    volumes:
      - "./configurator-config:/config"
      - "./hass-config:/hass-config"
    user: "${PUID}:${PGID}"

any ideas?

best regards,
Markus

Solved - My Problem was a misunderstanding. When using docker, there‘s no Add-On-Store, so it was not a problem with the internet connection