LooLzzz / docking-station

166 stars 2 forks source link

No containers found "But Nobody Came" #3

Closed ShanDestromp closed 4 weeks ago

ShanDestromp commented 1 month ago

Everything initially seems to start up fine (according to the logs) but as soon as I load the webpage and it starts its checks, errors are dumped to log and (after a few moments) I get a "but nobody came" error.

Setup Brief:

I use dockge to setup and manage my compose stacks. The root compose directory is properly mounted to DS along with the docker.sock file. The compose files are stored in a sub directory based on the stack name (so /docker/stacks/immich/docker-compose.yml, /docker/stacks/jellyfin/docker-compose.yml etc). The parent directory is the one mounted to /mnt/compose-files (so it's /mnt/compose-files/immich/docker-compose.yml, etc).

I'm guessing this is the root cause, opposed to having one folder for all compose files, based off of the reddit thread and the wording of the example (DS) compose file.

If I'm correct, I would strongly request that handling such a nested-folder setup be added to your roadmap. I understand I can probably mount each stacks compose file directly into /mnt/compose-files but that is......unwieldy at best. I add and remove stacks all of the time, move containers to different stacks as I organize etc. Having to manually update docking-station every time I add or remove a stack means honestly, I'm going to prefer watchtower or diun (my current choice) which are "set and forget" deployments"

DS Compose (part of a larger "monitoring" compose file):

 docking-station:
    container_name: docking-station
    image: loolzzz/docking-station
    restart: unless-stopped
    # environment:
    #   - WEB_PORT=3000
    #   - SERVER_PORT=3001
    ports:
      - 3000:3000
    volumes:
      - /nexus/docker/config/docking-station/config:/config
      - /nexus/docker/config/docking-station/data:/data
      - /nexus/docker/config/docking-station/logs:/logs
      - /var/run/docker.sock:/var/run/docker.sock
      - /etc/localtime:/etc/localtime:ro
      - /nexus/docker/stacks:/mnt/compose-files

Logs (after loading the webpage and getting the "but nobody came":

[AUTO-UPDATER] NODE_ENV=production sleep 5 && python -m src.app.api.auto_updater exited with code 0
[SERVER] INFO:     127.0.0.1:56510 - "GET /api/settings HTTP/1.1" 200
[SERVER] INFO:     127.0.0.1:56522 - "GET /api/stacks HTTP/1.1" 500
[SERVER] ERROR:    Exception in ASGI application
[SERVER] Traceback (most recent call last):
[SERVER]   File "/usr/local/lib/python3.12/site-packages/uvicorn/protocols/http/httptools_impl.py", line 399, in run_asgi
[SERVER]     result = await app(  # type: ignore[func-returns-value]
[SERVER]              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/usr/local/lib/python3.12/site-packages/uvicorn/middleware/proxy_headers.py", line 70, in __call__
[SERVER]     return await self.app(scope, receive, send)
[SERVER]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/usr/local/lib/python3.12/site-packages/fastapi/applications.py", line 1054, in __call__
[SERVER]     await super().__call__(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/applications.py", line 123, in __call__
[SERVER]     await self.middleware_stack(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 186, in __call__
[SERVER]     raise exc
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 164, in __call__
[SERVER]     await self.app(scope, receive, _send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/middleware/cors.py", line 85, in __call__
[SERVER]     await self.app(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/middleware/exceptions.py", line 65, in __call__
[SERVER]     await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app
[SERVER]     raise exc
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app
[SERVER]     await app(scope, receive, sender)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 756, in __call__
[SERVER]     await self.middleware_stack(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 776, in app
[SERVER]     await route.handle(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 297, in handle
[SERVER]     await self.app(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 77, in app
[SERVER]     await wrap_app_handling_exceptions(app, request)(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app
[SERVER]     raise exc
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app
[SERVER]     await app(scope, receive, sender)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 72, in app
[SERVER]     response = await func(request)
[SERVER]                ^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 278, in app
[SERVER]     raw_response = await run_endpoint_function(
[SERVER]                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 191, in run_endpoint_function
[SERVER]     return await dependant.call(**values)
[SERVER]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/app/docking-station-app/src/app/api/settings/cache.py", line 231, in inner
[SERVER]     ret = await ensure_async_func(*args, **kwargs)
[SERVER]           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/app/docking-station-app/src/app/api/settings/cache.py", line 136, in ensure_async_func
[SERVER]     return await func(*args, **kwargs)
[SERVER]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/app/docking-station-app/src/app/api/routes/stacks.py", line 29, in list_compose_stacks
[SERVER]     return await docker_services.list_compose_stacks(
[SERVER]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/app/docking-station-app/src/app/api/services/docker.py", line 167, in list_compose_stacks
[SERVER]     stacks = await asyncio.gather(*[
[SERVER]              ^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/app/docking-station-app/src/app/api/services/docker.py", line 159, in _task
[SERVER]     stack.services = await list_containers(
[SERVER]                      ^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/app/docking-station-app/src/app/api/services/docker.py", line 68, in list_containers
[SERVER]     await asyncio.gather(*[
[SERVER]   File "/app/docking-station-app/src/app/api/services/docker.py", line 56, in _task
[SERVER]     res.image = await get_image(
[SERVER]                 ^^^^^^^^^^^^^^^^
[SERVER]   File "/app/docking-station-app/src/app/api/services/docker.py", line 147, in get_image
[SERVER]     raise KeyError(repository_or_tag)
[SERVER] KeyError: 'docker.io/library/postgres:15'
[SERVER] INFO:     127.0.0.1:56526 - "GET /api/stacks HTTP/1.1" 500
[SERVER] ERROR:    Exception in ASGI application
[SERVER] Traceback (most recent call last):
[SERVER]   File "/usr/local/lib/python3.12/site-packages/uvicorn/protocols/http/httptools_impl.py", line 399, in run_asgi
[SERVER]     result = await app(  # type: ignore[func-returns-value]
[SERVER]              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/usr/local/lib/python3.12/site-packages/uvicorn/middleware/proxy_headers.py", line 70, in __call__
[SERVER]     return await self.app(scope, receive, send)
[SERVER]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/usr/local/lib/python3.12/site-packages/fastapi/applications.py", line 1054, in __call__
[SERVER]     await super().__call__(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/applications.py", line 123, in __call__
[SERVER]     await self.middleware_stack(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 186, in __call__
[SERVER]     raise exc
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 164, in __call__
[SERVER]     await self.app(scope, receive, _send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/middleware/cors.py", line 85, in __call__
[SERVER]     await self.app(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/middleware/exceptions.py", line 65, in __call__
[SERVER]     await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app
[SERVER]     raise exc
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app
[SERVER]     await app(scope, receive, sender)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 756, in __call__
[SERVER]     await self.middleware_stack(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 776, in app
[SERVER]     await route.handle(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 297, in handle
[SERVER]     await self.app(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 77, in app
[SERVER]     await wrap_app_handling_exceptions(app, request)(scope, receive, send)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app
[SERVER]     raise exc
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app
[SERVER]     await app(scope, receive, sender)
[SERVER]   File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 72, in app
[SERVER]     response = await func(request)
[SERVER]                ^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 278, in app
[SERVER]     raw_response = await run_endpoint_function(
[SERVER]                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 191, in run_endpoint_function
[SERVER]     return await dependant.call(**values)
[SERVER]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/app/docking-station-app/src/app/api/settings/cache.py", line 231, in inner
[SERVER]     ret = await ensure_async_func(*args, **kwargs)
[SERVER]           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/app/docking-station-app/src/app/api/settings/cache.py", line 136, in ensure_async_func
[SERVER]     return await func(*args, **kwargs)
[SERVER]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/app/docking-station-app/src/app/api/routes/stacks.py", line 29, in list_compose_stacks
[SERVER]     return await docker_services.list_compose_stacks(
[SERVER]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/app/docking-station-app/src/app/api/services/docker.py", line 167, in list_compose_stacks
[SERVER]     stacks = await asyncio.gather(*[
[SERVER]              ^^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/app/docking-station-app/src/app/api/services/docker.py", line 159, in _task
[SERVER]     stack.services = await list_containers(
[SERVER]                      ^^^^^^^^^^^^^^^^^^^^^^
[SERVER]   File "/app/docking-station-app/src/app/api/services/docker.py", line 68, in list_containers
[SERVER]     await asyncio.gather(*[
[SERVER]   File "/app/docking-station-app/src/app/api/services/docker.py", line 56, in _task
[SERVER]     res.image = await get_image(
[SERVER]                 ^^^^^^^^^^^^^^^^
[SERVER]   File "/app/docking-station-app/src/app/api/services/docker.py", line 147, in get_image
[SERVER]     raise KeyError(repository_or_tag)
[SERVER] KeyError: 'docker.io/library/postgres:15'
LooLzzz commented 1 month ago

One possible solution would be to mount like this

volumes:
  - /nexus/docker/stacks:/nexus/docker/stacks

I'll change the wording on dockerhub to match the wording of Dockge:

  # ⚠️ 2. Left Stacks Path === Right Stacks Path (MUST)
ShanDestromp commented 1 month ago

Unfortunately it seems as though that hasn't completely solved my issue. Updating the compose file and restarting made no change, so I nuked all the persistent data and started again and things were looking up when this appeared in my logs:

[SERVER] DEBUG:    regctl image digest request: ghcr.io/paperless-ngx/paperless-ngx:latest
[SERVER] DEBUG:    regctl image digest request: lscr.io/linuxserver/resilio-sync:latest
[SERVER] DEBUG:    regctl image digest request: ghcr.io/mealie-recipes/mealie:latest
[SERVER] DEBUG:    regctl image digest request: louislam/dockge:1
[SERVER] DEBUG:    regctl image digest request: onerahmet/openai-whisper-asr-webservice:latest-gpu
.....
[SERVER] INFO:     regctl image digest response: ghcr.io/paperless-ngx/paperless-ngx@sha256:da0476cea301df8bc8d20739f0e76de1e77d91ad2c9170b45c803468dde19208
[SERVER] INFO:     regctl image digest response: ghcr.io/mealie-recipes/mealie@sha256:54a976880161c3c96de30b63cd0092d1f069aa8b23686669b726558ddf112724
.....
[SERVER] INFO:     recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091
[SERVER] INFO:     regctl image digest response: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091
[SERVER] DEBUG:    regctl image inspect request: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091
[SERVER] DEBUG:    regctl image inspect request: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091
[SERVER] INFO:     127.0.0.1:40286 - "GET /api/stacks HTTP/1.1" 500

(Trimmed for brevity as I have around 40 containers)

Unfortunately it started to loop between the same, earlier error (from #3 ) and

[SERVER] ERROR:    Error running regctl command: Error running regctl command: failed to request manifest head lscr.io/linuxserver/resilio-sync:latest: failed to request auth token (post): Post "https://ghcr.io/token": dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:45973->127.0.0.11:53: i/o timeout
[SERVER] ERROR:    Error running regctl command: Error running regctl command: failed to request manifest head docker.io/prodrigestivill/postgres-backup-local:latest: failed to request auth token (get): Get "https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Aprodrigestivill%2Fpostgres-backup-local%3Apull&service=registry.docker.io": dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:50971->127.0.0.11:53: i/o timeout
[SERVER] ERROR:    Error running regctl command: Error running regctl command: failed to request manifest head docker.io/cyfershepard/jellystat:latest: failed to request auth token (get): Get "https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Acyfershepard%2Fjellystat%3Apull&service=registry.docker.io": dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:39489->127.0.0.11:53: i/o timeout
[SERVER] ERROR:    Error running regctl command: Error running regctl command: failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: failed to request auth token (post): Post "https://auth.docker.io/token": dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:60398->127.0.0.11:53: i/o timeout

So it's now properly finding my containers and requesting the status on them (and receiving such on most?) but is still ultimately crashing out.

EDIT: For clarity, the stacks mount in docking-station matches that for dockge

Dockge compose.yaml file
services:
  dockge:
    image: louislam/dockge:1
    restart: unless-stopped
    ports:
      - 5001:5001
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - /nexus/docker/config/dockge/data:/app/data
      # Stacks Directory
      # ⚠️ READ IT CAREFULLY. If you did it wrong, your data could end up writing into a WRONG PATH.
      # ⚠️ 1. FULL path only. No relative path (MUST)
      # ⚠️ 2. Left Stacks Path === Right Stacks Path (MUST)
      - /nexus/docker/stacks:/nexus/docker/stacks
    environment:
      # Tell Dockge where to find the stacks
      - DOCKGE_STACKS_DIR=/nexus/docker/stacks
Complete docking-station log

``` [WEB] ▲ Next.js 14.1.0 [WEB] - Local: http://29437921f3d6:3000 [WEB] - Network: http://172.26.0.5:3000 [WEB] [WEB] ✓ Ready in 98ms [SERVER] INFO Using path src/app/api/main.py [SERVER] INFO Resolved absolute path /app/docking-station-app/src/app/api/main.py [SERVER] INFO Searching for package file structure from directories with __init__.py [SERVER] files [SERVER] INFO Importing from /app/docking-station-app/src/app [SERVER] [SERVER] ╭─ Python package file structure ─╮ [SERVER] │ │ [SERVER] │ 📁 api │ [SERVER] │ ├── 🐍 __init__.py │ [SERVER] │ └── 🐍 main.py │ [SERVER] │ │ [SERVER] ╰─────────────────────────────────╯ [SERVER] [SERVER] INFO Importing module api.main [SERVER] INFO Found importable FastAPI app [SERVER] [SERVER] ╭── Importable FastAPI app ──╮ [SERVER] │ │ [SERVER] │ from api.main import app │ [SERVER] │ │ [SERVER] ╰────────────────────────────╯ [SERVER] [SERVER] INFO Using import string api.main:app [SERVER] [SERVER] ╭─────────── FastAPI CLI - Production mode ───────────╮ [SERVER] │ │ [SERVER] │ Serving at: http://0.0.0.0:3001 │ [SERVER] │ │ [SERVER] │ API docs: http://0.0.0.0:3001/docs │ [SERVER] │ │ [SERVER] │ Running in production mode, for development use: │ [SERVER] │ │ [SERVER] │ fastapi dev │ [SERVER] │ │ [SERVER] ╰─────────────────────────────────────────────────────╯ [SERVER] [SERVER] INFO: Started server process [19] [SERVER] INFO: Waiting for application startup. [SERVER] INFO: Application startup complete. [SERVER] INFO: Uvicorn running on http://0.0.0.0:3001 (Press CTRL+C to quit) [AUTO-UPDATER] INFO: Auto updater is disabled [AUTO-UPDATER] NODE_ENV=production sleep 5 && python -m src.app.api.auto_updater exited with code 0 [SERVER] INFO: 127.0.0.1:35912 - "GET /api/settings HTTP/1.1" 200 [SERVER] INFO: 127.0.0.1:35918 - "GET /api/stacks HTTP/1.1" 500 [SERVER] ERROR: Exception in ASGI application [SERVER] Traceback (most recent call last): [SERVER] File "/usr/local/lib/python3.12/site-packages/uvicorn/protocols/http/httptools_impl.py", line 399, in run_asgi [SERVER] result = await app( # type: ignore[func-returns-value] [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/uvicorn/middleware/proxy_headers.py", line 70, in __call__ [SERVER] return await self.app(scope, receive, send) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/applications.py", line 1054, in __call__ [SERVER] await super().__call__(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/applications.py", line 123, in __call__ [SERVER] await self.middleware_stack(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 186, in __call__ [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 164, in __call__ [SERVER] await self.app(scope, receive, _send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/cors.py", line 85, in __call__ [SERVER] await self.app(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/exceptions.py", line 65, in __call__ [SERVER] await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app [SERVER] await app(scope, receive, sender) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 756, in __call__ [SERVER] await self.middleware_stack(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 776, in app [SERVER] await route.handle(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 297, in handle [SERVER] await self.app(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 77, in app [SERVER] await wrap_app_handling_exceptions(app, request)(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app [SERVER] await app(scope, receive, sender) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 72, in app [SERVER] response = await func(request) [SERVER] ^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 278, in app [SERVER] raw_response = await run_endpoint_function( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 191, in run_endpoint_function [SERVER] return await dependant.call(**values) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/settings/cache.py", line 231, in inner [SERVER] ret = await ensure_async_func(*args, **kwargs) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/settings/cache.py", line 136, in ensure_async_func [SERVER] return await func(*args, **kwargs) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/routes/stacks.py", line 29, in list_compose_stacks [SERVER] return await docker_services.list_compose_stacks( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 167, in list_compose_stacks [SERVER] stacks = await asyncio.gather(*[ [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 159, in _task [SERVER] stack.services = await list_containers( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 68, in list_containers [SERVER] await asyncio.gather(*[ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 56, in _task [SERVER] res.image = await get_image( [SERVER] ^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 147, in get_image [SERVER] raise KeyError(repository_or_tag) [SERVER] KeyError: 'docker.io/library/postgres:15' [SERVER] DEBUG: regctl image digest request: ghcr.io/paperless-ngx/paperless-ngx:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/resilio-sync:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/mealie-recipes/mealie:latest [SERVER] DEBUG: regctl image digest request: louislam/dockge:1 [SERVER] DEBUG: regctl image digest request: onerahmet/openai-whisper-asr-webservice:latest-gpu [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: ghcr.io/recyclarr/recyclarr [SERVER] DEBUG: regctl image digest request: ghcr.io/recyclarr/recyclarr:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/recyclarr/recyclarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/sabnzbd:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/transmission [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/transmission [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/transmission:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/transmission [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr [SERVER] DEBUG: regctl image digest request: ghcr.io/flaresolverr/flaresolverr:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/gethomepage/homepage:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/immich-app/immich-server:release [SERVER] DEBUG: regctl image digest request: prodrigestivill/postgres-backup-local:latest [SERVER] DEBUG: regctl image digest request: prodrigestivill/postgres-backup-local [SERVER] DEBUG: regctl image digest request: ghcr.io/immich-app/immich-machine-learning:release-cuda [SERVER] DEBUG: regctl image digest request: ghcr.io/jellyfin/jellyfin:latest [SERVER] DEBUG: regctl image digest request: cyfershepard/jellystat:latest [SERVER] DEBUG: regctl image digest request: postgres:15.2 [SERVER] DEBUG: regctl image digest request: rommapp/romm:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/swingmx/swingmusic:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/mariadb:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/advplyr/audiobookshelf:latest [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui:latest [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: misterbabou/gptwol:latest [SERVER] DEBUG: regctl image digest request: hurlenko/filebrowser:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/speedtest-tracker:latest [SERVER] DEBUG: regctl image digest request: loolzzz/docking-station:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/analogj/scrutiny:master-omnibus [SERVER] DEBUG: regctl image digest request: amir20/dozzle:latest [SERVER] DEBUG: regctl image digest request: nicolargo/glances:ubuntu-dev [SERVER] DEBUG: regctl image digest request: deetoreu/nut-http:latest [SERVER] DEBUG: regctl image digest request: crazymax/diun:latest [SERVER] INFO: regctl image digest response: ghcr.io/paperless-ngx/paperless-ngx@sha256:da0476cea301df8bc8d20739f0e76de1e77d91ad2c9170b45c803468dde19208 [SERVER] INFO: regctl image digest response: ghcr.io/mealie-recipes/mealie@sha256:54a976880161c3c96de30b63cd0092d1f069aa8b23686669b726558ddf112724 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:a9f25c54b7eb8ecf11e506e90ee7eab9e9786143e08eeb76d5bfc3e82531eeab [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:a9f25c54b7eb8ecf11e506e90ee7eab9e9786143e08eeb76d5bfc3e82531eeab [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:a9f25c54b7eb8ecf11e506e90ee7eab9e9786143e08eeb76d5bfc3e82531eeab [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:a9f25c54b7eb8ecf11e506e90ee7eab9e9786143e08eeb76d5bfc3e82531eeab [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:a9f25c54b7eb8ecf11e506e90ee7eab9e9786143e08eeb76d5bfc3e82531eeab [SERVER] INFO: regctl image digest response: ghcr.io/flaresolverr/flaresolverr@sha256:f104ee51e5124d83cf3be9b37480649355d223f7d8f9e453d0d5ef06c6e3b31b [SERVER] INFO: regctl image digest response: ghcr.io/gethomepage/homepage@sha256:cbc5b49533f9afd0be57f6d5168eef48be2d713709259d6697f0d33b4ecb2f28 [SERVER] INFO: regctl image digest response: ghcr.io/immich-app/immich-server@sha256:248a6da7dadeb57f90eacd5635ecc65e63d4c3646a6c94a362bb57cba1b314fa [SERVER] INFO: regctl image digest response: ghcr.io/immich-app/immich-machine-learning@sha256:4cb91b8d5a1bb0617bc013652fa496f7071f8eb828406efe6ff81d84875f5e4e [SERVER] INFO: regctl image digest response: ghcr.io/jellyfin/jellyfin@sha256:76930362d2c266e8f0b2f51f1c6b039a5207525d0e138a1cdbec870c66c34b0f [SERVER] DEBUG: regctl image inspect request: ghcr.io/paperless-ngx/paperless-ngx@sha256:da0476cea301df8bc8d20739f0e76de1e77d91ad2c9170b45c803468dde19208 [SERVER] DEBUG: regctl image inspect request: ghcr.io/mealie-recipes/mealie@sha256:54a976880161c3c96de30b63cd0092d1f069aa8b23686669b726558ddf112724 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:a9f25c54b7eb8ecf11e506e90ee7eab9e9786143e08eeb76d5bfc3e82531eeab [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:a9f25c54b7eb8ecf11e506e90ee7eab9e9786143e08eeb76d5bfc3e82531eeab [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:a9f25c54b7eb8ecf11e506e90ee7eab9e9786143e08eeb76d5bfc3e82531eeab [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:a9f25c54b7eb8ecf11e506e90ee7eab9e9786143e08eeb76d5bfc3e82531eeab [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:a9f25c54b7eb8ecf11e506e90ee7eab9e9786143e08eeb76d5bfc3e82531eeab [SERVER] DEBUG: regctl image inspect request: ghcr.io/flaresolverr/flaresolverr@sha256:f104ee51e5124d83cf3be9b37480649355d223f7d8f9e453d0d5ef06c6e3b31b [SERVER] DEBUG: regctl image inspect request: ghcr.io/gethomepage/homepage@sha256:cbc5b49533f9afd0be57f6d5168eef48be2d713709259d6697f0d33b4ecb2f28 [SERVER] DEBUG: regctl image inspect request: ghcr.io/immich-app/immich-server@sha256:248a6da7dadeb57f90eacd5635ecc65e63d4c3646a6c94a362bb57cba1b314fa [SERVER] DEBUG: regctl image inspect request: ghcr.io/immich-app/immich-machine-learning@sha256:4cb91b8d5a1bb0617bc013652fa496f7071f8eb828406efe6ff81d84875f5e4e [SERVER] DEBUG: regctl image inspect request: ghcr.io/jellyfin/jellyfin@sha256:76930362d2c266e8f0b2f51f1c6b039a5207525d0e138a1cdbec870c66c34b0f [SERVER] INFO: regctl image inspect response: 2024-07-11 04:32:04.004855+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-05 06:08:27.871856+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-12 23:35:01.289186+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-12 23:35:01.289186+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-10 16:32:15.340411+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-10 16:30:10.242038+00:00 [SERVER] INFO: regctl image inspect response: 2024-06-25 00:24:15.266514+00:00 [SERVER] INFO: regctl image digest response: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] DEBUG: regctl image inspect request: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] INFO: regctl image digest response: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] INFO: regctl image digest response: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] INFO: regctl image digest response: louislam/dockge@sha256:ec889251baff476366783bc4a092aaa08c601f377537a0f30fb922754edcd9b7 [SERVER] DEBUG: regctl image inspect request: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] DEBUG: regctl image inspect request: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] DEBUG: regctl image inspect request: louislam/dockge@sha256:ec889251baff476366783bc4a092aaa08c601f377537a0f30fb922754edcd9b7 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/resilio-sync@sha256:45354957dd08eeff28c68202d1c135b3e43340cf2af1125ee2b422d85d0fe38c [SERVER] DEBUG: regctl image inspect request: lscr.io/linuxserver/resilio-sync@sha256:45354957dd08eeff28c68202d1c135b3e43340cf2af1125ee2b422d85d0fe38c [SERVER] INFO: regctl image digest response: ghcr.io/swingmx/swingmusic@sha256:e6ccef307ebeadac967de0565b75e4906615ecfaac2a8f6bb82be13f111439d5 [SERVER] DEBUG: regctl image inspect request: ghcr.io/swingmx/swingmusic@sha256:e6ccef307ebeadac967de0565b75e4906615ecfaac2a8f6bb82be13f111439d5 [SERVER] INFO: regctl image digest response: ghcr.io/advplyr/audiobookshelf@sha256:725c287ac1b56f8115dfc7fca75d8490976af59466f893fbf344711bd117f8cb [SERVER] INFO: regctl image digest response: cyfershepard/jellystat@sha256:92d5cd58779828bb06df982ca735e8e15bb6ab9ba749c0965296946e30428641 [SERVER] DEBUG: regctl image inspect request: ghcr.io/advplyr/audiobookshelf@sha256:725c287ac1b56f8115dfc7fca75d8490976af59466f893fbf344711bd117f8cb [SERVER] DEBUG: regctl image inspect request: cyfershepard/jellystat@sha256:92d5cd58779828bb06df982ca735e8e15bb6ab9ba749c0965296946e30428641 [SERVER] INFO: regctl image inspect response: 2024-07-12 23:35:01.289186+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-12 23:35:01.289186+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-12 23:35:01.289186+00:00 [SERVER] INFO: regctl image inspect response: 2024-06-26 01:16:15.775655+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-07 20:56:56.611773+00:00 [SERVER] INFO: regctl image digest response: onerahmet/openai-whisper-asr-webservice@sha256:1daf8b3d5b32c92778c6ae08d2640ae81278f0960f200a38ac7e55a13ed81710 [SERVER] DEBUG: regctl image inspect request: onerahmet/openai-whisper-asr-webservice@sha256:1daf8b3d5b32c92778c6ae08d2640ae81278f0960f200a38ac7e55a13ed81710 [SERVER] INFO: regctl image digest response: postgres@sha256:78a275d4c891f7b3a33d3f1a78eda9f1d744954d9e20122bfdc97cdda25cddaf [SERVER] DEBUG: regctl image inspect request: postgres@sha256:78a275d4c891f7b3a33d3f1a78eda9f1d744954d9e20122bfdc97cdda25cddaf [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/mariadb@sha256:d4c222e41b4f0807a070d28bae84434aef00977e192a538780443ccab725c4bd [SERVER] DEBUG: regctl image inspect request: lscr.io/linuxserver/mariadb@sha256:d4c222e41b4f0807a070d28bae84434aef00977e192a538780443ccab725c4bd [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/transmission@sha256:1c03e16c3b2de002bd80aa01c4a1f4315d54f2a34ba2b69af5d55efabe6cf1e4 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/transmission@sha256:1c03e16c3b2de002bd80aa01c4a1f4315d54f2a34ba2b69af5d55efabe6cf1e4 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/transmission@sha256:1c03e16c3b2de002bd80aa01c4a1f4315d54f2a34ba2b69af5d55efabe6cf1e4 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/transmission@sha256:1c03e16c3b2de002bd80aa01c4a1f4315d54f2a34ba2b69af5d55efabe6cf1e4 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/transmission@sha256:1c03e16c3b2de002bd80aa01c4a1f4315d54f2a34ba2b69af5d55efabe6cf1e4 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/transmission@sha256:1c03e16c3b2de002bd80aa01c4a1f4315d54f2a34ba2b69af5d55efabe6cf1e4 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/transmission@sha256:1c03e16c3b2de002bd80aa01c4a1f4315d54f2a34ba2b69af5d55efabe6cf1e4 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/transmission@sha256:1c03e16c3b2de002bd80aa01c4a1f4315d54f2a34ba2b69af5d55efabe6cf1e4 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/bazarr@sha256:5da74fc1bbd5da69e3b4f9b2376f6ccfbe3b47f143e6eb5651ed37cc1d4412dd [SERVER] DEBUG: regctl image inspect request: lscr.io/linuxserver/bazarr@sha256:5da74fc1bbd5da69e3b4f9b2376f6ccfbe3b47f143e6eb5651ed37cc1d4412dd [SERVER] INFO: regctl image digest response: marcobaobao/yt-dlp-webui@sha256:edbb703d00dc622369ea40214b3cb9a48dcc12199c37ddd2a9036bb0eca3c265 [SERVER] DEBUG: regctl image inspect request: marcobaobao/yt-dlp-webui@sha256:edbb703d00dc622369ea40214b3cb9a48dcc12199c37ddd2a9036bb0eca3c265 [SERVER] INFO: regctl image inspect response: 2024-07-09 21:28:47.894145+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head lscr.io/linuxserver/bazarr:latest: failed to request auth token (post): Post "https://ghcr.io/token": dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:38077->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:bf5aaf1577edbc3ba33db069676e7f8324eda33761ca59721942bc8ef56c015c [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:bf5aaf1577edbc3ba33db069676e7f8324eda33761ca59721942bc8ef56c015c [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:bf5aaf1577edbc3ba33db069676e7f8324eda33761ca59721942bc8ef56c015c [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/bazarr@sha256:5da74fc1bbd5da69e3b4f9b2376f6ccfbe3b47f143e6eb5651ed37cc1d4412dd [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:bf5aaf1577edbc3ba33db069676e7f8324eda33761ca59721942bc8ef56c015c [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/bazarr@sha256:5da74fc1bbd5da69e3b4f9b2376f6ccfbe3b47f143e6eb5651ed37cc1d4412dd [SERVER] INFO: regctl image digest response: ghcr.io/analogj/scrutiny@sha256:51240579aca148379fce5a469bb2fa470d016d14b687121e50a9c19fe2e930d7 [SERVER] DEBUG: regctl image inspect request: ghcr.io/analogj/scrutiny@sha256:51240579aca148379fce5a469bb2fa470d016d14b687121e50a9c19fe2e930d7 [SERVER] INFO: regctl image inspect response: 2024-04-08 05:08:16.742553+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head docker.io/prodrigestivill/postgres-backup-local:latest: failed to request auth token (post): Post "https://auth.docker.io/token": dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:48347->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head docker.io/prodrigestivill/postgres-backup-local:latest: failed to request auth token (post): Post "https://auth.docker.io/token": dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:44626->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head docker.io/rommapp/romm:latest: failed to request auth token (post): Post "https://auth.docker.io/token": dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:46601->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2024-07-04 16:45:40.554351+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: failed to request auth token (get): Get "https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Amarcobaobao%2Fyt-dlp-webui%3Apull&service=registry.docker.io": dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:51711->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2023-05-03 11:09:54.748446+00:00 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:bf5aaf1577edbc3ba33db069676e7f8324eda33761ca59721942bc8ef56c015c [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:bf5aaf1577edbc3ba33db069676e7f8324eda33761ca59721942bc8ef56c015c [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:bf5aaf1577edbc3ba33db069676e7f8324eda33761ca59721942bc8ef56c015c [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:bf5aaf1577edbc3ba33db069676e7f8324eda33761ca59721942bc8ef56c015c [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:bf5aaf1577edbc3ba33db069676e7f8324eda33761ca59721942bc8ef56c015c [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:bf5aaf1577edbc3ba33db069676e7f8324eda33761ca59721942bc8ef56c015c [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:bf5aaf1577edbc3ba33db069676e7f8324eda33761ca59721942bc8ef56c015c [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:bf5aaf1577edbc3ba33db069676e7f8324eda33761ca59721942bc8ef56c015c [SERVER] INFO: regctl image inspect response: 2024-07-12 16:07:45.318236+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-14T08:34:53-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999992376 [SERVER] failed to request manifest head docker.io/hurlenko/filebrowser:latest: failed to request auth token (get): Get "https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Ahurlenko%2Ffilebrowser%3Apull&service=registry.docker.io": dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:33625->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2024-07-07 23:19:02.965315+00:00 [SERVER] INFO: regctl image inspect response: 2024-02-26 06:59:05.105449+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-10 10:50:26.093745+00:00 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/bazarr@sha256:5da74fc1bbd5da69e3b4f9b2376f6ccfbe3b47f143e6eb5651ed37cc1d4412dd [SERVER] INFO: regctl image digest response: marcobaobao/yt-dlp-webui@sha256:edbb703d00dc622369ea40214b3cb9a48dcc12199c37ddd2a9036bb0eca3c265 [SERVER] DEBUG: regctl image inspect request: marcobaobao/yt-dlp-webui@sha256:edbb703d00dc622369ea40214b3cb9a48dcc12199c37ddd2a9036bb0eca3c265 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-14T08:34:52-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.999996464 [SERVER] failed to request manifest head lscr.io/linuxserver/sabnzbd:latest: failed to request auth token (post): Post "https://ghcr.io/token": dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:36662->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image digest response: loolzzz/docking-station@sha256:ab6421550f82acd56a9bdae2333c3571c585baa73b74c65780e09bdde4661d6b [SERVER] DEBUG: regctl image inspect request: loolzzz/docking-station@sha256:ab6421550f82acd56a9bdae2333c3571c585baa73b74c65780e09bdde4661d6b [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-14T08:34:58-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999995471 [SERVER] failed to request manifest head docker.io/amir20/dozzle:latest: failed to request auth token (post): Post "https://auth.docker.io/token": dial tcp [2600:1f18:2148:bc02:2640:1b90:cea6:b6b5]:443: connect: cannot assign requested address [SERVER] INFO: regctl image digest response: misterbabou/gptwol@sha256:df6ebb06794b70508124ebb7ba247111a3065f541132264f60d7a67076379f36 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-14T08:34:58-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999995902 [SERVER] failed to request manifest head docker.io/nicolargo/glances:ubuntu-dev: failed to request auth token (post): Post "https://auth.docker.io/token": dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:37883->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-14T08:34:58-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.9999957720000001 [SERVER] failed to request manifest head docker.io/deetoreu/nut-http:latest: failed to request auth token (post): Post "https://auth.docker.io/token": dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:57185->127.0.0.11:53: i/o timeout [SERVER] DEBUG: regctl image inspect request: misterbabou/gptwol@sha256:df6ebb06794b70508124ebb7ba247111a3065f541132264f60d7a67076379f36 [SERVER] INFO: regctl image inspect response: 2024-07-09 10:35:27.887269+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-07 23:19:02.965315+00:00 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/prowlarr@sha256:c43dc0311d4381395b60b3a6068e82226eddb213278bfe886bebabe67eb0f762 [SERVER] DEBUG: regctl image inspect request: lscr.io/linuxserver/prowlarr@sha256:c43dc0311d4381395b60b3a6068e82226eddb213278bfe886bebabe67eb0f762 [SERVER] INFO: regctl image digest response: crazymax/diun@sha256:28e86edddcfd912e5122327c7df9bff3f313f1b7bcdfaf178c0bca7ffa21e587 [SERVER] DEBUG: regctl image inspect request: crazymax/diun@sha256:28e86edddcfd912e5122327c7df9bff3f313f1b7bcdfaf178c0bca7ffa21e587 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/prowlarr@sha256:c43dc0311d4381395b60b3a6068e82226eddb213278bfe886bebabe67eb0f762 [SERVER] DEBUG: regctl image inspect request: lscr.io/linuxserver/prowlarr@sha256:c43dc0311d4381395b60b3a6068e82226eddb213278bfe886bebabe67eb0f762 [SERVER] INFO: regctl image inspect response: 2024-07-14 02:10:23.200740+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-07 23:24:45.096424+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-12 16:07:45.318236+00:00 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/prowlarr@sha256:c43dc0311d4381395b60b3a6068e82226eddb213278bfe886bebabe67eb0f762 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/prowlarr@sha256:c43dc0311d4381395b60b3a6068e82226eddb213278bfe886bebabe67eb0f762 [SERVER] INFO: regctl image inspect response: 2024-07-14 02:10:23.200740+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-08 23:30:05.217160+00:00 [SERVER] INFO: regctl image inspect response: 2024-06-15 16:38:24.810132+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-02 12:29:09.850917+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-07 23:19:02.965315+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-07 23:19:02.965315+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-07 23:19:02.965315+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-09 10:35:27.887269+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-09 10:35:27.887269+00:00 [SERVER] INFO: regctl image inspect response: 2024-01-21 16:55:47.994464+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-14T08:35:02-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.999995432 [SERVER] failed to request manifest head lscr.io/linuxserver/prowlarr:latest: failed to request auth token (post): Post "https://ghcr.io/token": dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:43122->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-14T08:35:03-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.9999955809999999 [SERVER] failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: failed to request auth token (post): Post "https://auth.docker.io/token": dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:52189->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2024-07-07 23:24:45.096424+00:00 [SERVER] INFO: regctl image inspect response: 2024-04-06 11:44:17.689476+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-12 16:07:45.318236+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-07 22:24:02.258230+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-09 10:35:27.887269+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-07 23:19:02.965315+00:00 [SERVER] INFO: regctl image inspect response: 2024-06-16 09:56:21.288869+00:00 [SERVER] INFO: regctl image digest response: marcobaobao/yt-dlp-webui@sha256:edbb703d00dc622369ea40214b3cb9a48dcc12199c37ddd2a9036bb0eca3c265 [SERVER] INFO: regctl image digest response: marcobaobao/yt-dlp-webui@sha256:edbb703d00dc622369ea40214b3cb9a48dcc12199c37ddd2a9036bb0eca3c265 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/speedtest-tracker@sha256:7cefc6354654a3fcfbd5fd0db45f3c69f3e1453f0435054405e8cfbc23c5a453 [SERVER] DEBUG: regctl image inspect request: lscr.io/linuxserver/speedtest-tracker@sha256:7cefc6354654a3fcfbd5fd0db45f3c69f3e1453f0435054405e8cfbc23c5a453 [SERVER] INFO: regctl image inspect response: 2024-07-13 21:26:14.642979+00:00 [SERVER] INFO: 127.0.0.1:47680 - "GET /api/stacks HTTP/1.1" 500 [SERVER] ERROR: Exception in ASGI application [SERVER] Traceback (most recent call last): [SERVER] File "/usr/local/lib/python3.12/site-packages/uvicorn/protocols/http/httptools_impl.py", line 399, in run_asgi [SERVER] result = await app( # type: ignore[func-returns-value] [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/uvicorn/middleware/proxy_headers.py", line 70, in __call__ [SERVER] return await self.app(scope, receive, send) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/applications.py", line 1054, in __call__ [SERVER] await super().__call__(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/applications.py", line 123, in __call__ [SERVER] await self.middleware_stack(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 186, in __call__ [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 164, in __call__ [SERVER] await self.app(scope, receive, _send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/cors.py", line 85, in __call__ [SERVER] await self.app(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/exceptions.py", line 65, in __call__ [SERVER] await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app [SERVER] await app(scope, receive, sender) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 756, in __call__ [SERVER] await self.middleware_stack(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 776, in app [SERVER] await route.handle(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 297, in handle [SERVER] await self.app(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 77, in app [SERVER] await wrap_app_handling_exceptions(app, request)(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app [SERVER] await app(scope, receive, sender) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 72, in app [SERVER] response = await func(request) [SERVER] ^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 278, in app [SERVER] raw_response = await run_endpoint_function( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 191, in run_endpoint_function [SERVER] return await dependant.call(**values) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/settings/cache.py", line 231, in inner [SERVER] ret = await ensure_async_func(*args, **kwargs) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/settings/cache.py", line 136, in ensure_async_func [SERVER] return await func(*args, **kwargs) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/routes/stacks.py", line 29, in list_compose_stacks [SERVER] return await docker_services.list_compose_stacks( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 167, in list_compose_stacks [SERVER] stacks = await asyncio.gather(*[ [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 159, in _task [SERVER] stack.services = await list_containers( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 68, in list_containers [SERVER] await asyncio.gather(*[ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 56, in _task [SERVER] res.image = await get_image( [SERVER] ^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 147, in get_image [SERVER] raise KeyError(repository_or_tag) [SERVER] KeyError: 'docker.io/library/postgres:15' [SERVER] INFO: 127.0.0.1:33376 - "GET /api/stacks HTTP/1.1" 500 [SERVER] ERROR: Exception in ASGI application [SERVER] Traceback (most recent call last): [SERVER] File "/usr/local/lib/python3.12/site-packages/uvicorn/protocols/http/httptools_impl.py", line 399, in run_asgi [SERVER] result = await app( # type: ignore[func-returns-value] [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/uvicorn/middleware/proxy_headers.py", line 70, in __call__ [SERVER] return await self.app(scope, receive, send) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/applications.py", line 1054, in __call__ [SERVER] await super().__call__(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/applications.py", line 123, in __call__ [SERVER] await self.middleware_stack(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 186, in __call__ [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 164, in __call__ [SERVER] await self.app(scope, receive, _send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/cors.py", line 85, in __call__ [SERVER] await self.app(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/exceptions.py", line 65, in __call__ [SERVER] await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app [SERVER] await app(scope, receive, sender) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 756, in __call__ [SERVER] await self.middleware_stack(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 776, in app [SERVER] await route.handle(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 297, in handle [SERVER] await self.app(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 77, in app [SERVER] await wrap_app_handling_exceptions(app, request)(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app [SERVER] await app(scope, receive, sender) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 72, in app [SERVER] response = await func(request) [SERVER] ^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 278, in app [SERVER] raw_response = await run_endpoint_function( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 191, in run_endpoint_function [SERVER] return await dependant.call(**values) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/settings/cache.py", line 231, in inner [SERVER] ret = await ensure_async_func(*args, **kwargs) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/settings/cache.py", line 136, in ensure_async_func [SERVER] return await func(*args, **kwargs) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/routes/stacks.py", line 29, in list_compose_stacks [SERVER] return await docker_services.list_compose_stacks( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 167, in list_compose_stacks [SERVER] stacks = await asyncio.gather(*[ [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 159, in _task [SERVER] stack.services = await list_containers( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 68, in list_containers [SERVER] await asyncio.gather(*[ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 56, in _task [SERVER] res.image = await get_image( [SERVER] ^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 147, in get_image [SERVER] raise KeyError(repository_or_tag) [SERVER] KeyError: 'docker.io/library/postgres:15' [SERVER] INFO: 127.0.0.1:45080 - "GET /api/stacks HTTP/1.1" 500 [SERVER] ERROR: Exception in ASGI application [SERVER] Traceback (most recent call last): [SERVER] File "/usr/local/lib/python3.12/site-packages/uvicorn/protocols/http/httptools_impl.py", line 399, in run_asgi [SERVER] result = await app( # type: ignore[func-returns-value] [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/uvicorn/middleware/proxy_headers.py", line 70, in __call__ [SERVER] return await self.app(scope, receive, send) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/applications.py", line 1054, in __call__ [SERVER] await super().__call__(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/applications.py", line 123, in __call__ [SERVER] await self.middleware_stack(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 186, in __call__ [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 164, in __call__ [SERVER] await self.app(scope, receive, _send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/cors.py", line 85, in __call__ [SERVER] await self.app(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/exceptions.py", line 65, in __call__ [SERVER] await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app [SERVER] await app(scope, receive, sender) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 756, in __call__ [SERVER] await self.middleware_stack(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 776, in app [SERVER] await route.handle(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 297, in handle [SERVER] await self.app(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 77, in app [SERVER] await wrap_app_handling_exceptions(app, request)(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app [SERVER] await app(scope, receive, sender) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 72, in app [SERVER] response = await func(request) [SERVER] ^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 278, in app [SERVER] raw_response = await run_endpoint_function( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 191, in run_endpoint_function [SERVER] return await dependant.call(**values) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/settings/cache.py", line 231, in inner [SERVER] ret = await ensure_async_func(*args, **kwargs) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/settings/cache.py", line 136, in ensure_async_func [SERVER] return await func(*args, **kwargs) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/routes/stacks.py", line 29, in list_compose_stacks [SERVER] return await docker_services.list_compose_stacks( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 167, in list_compose_stacks [SERVER] stacks = await asyncio.gather(*[ [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 159, in _task [SERVER] stack.services = await list_containers( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 68, in list_containers [SERVER] await asyncio.gather(*[ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 56, in _task [SERVER] res.image = await get_image( [SERVER] ^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 147, in get_image [SERVER] raise KeyError(repository_or_tag) [SERVER] KeyError: 'docker.io/library/postgres:15' ```

LooLzzz commented 1 month ago

It seems to me to be an API quota limit issue,
It should be reset every 6 hours according to dockerhub's docs.

Are you still experiencing the errors?

ShanDestromp commented 1 month ago

It seems to me to be an API quota limit issue, It should be reset every 6 hours according to dockerhub's docs.

Are you still experiencing the errors?

I disabled diun (the only service I had doing any kind of monitoring) this morning; as of this afternoon (~9 hours later) I'm still getting the same error sequence. I've since completely nuked the DS install and recreated it (same compose as above but wiped persistent data) with no change.

Ping isn't available within the container, however

# curl https://auth.docker.io/token -I
HTTP/1.1 405 Method Not Allowed
allow: GET
allow: POST
x-trace-id: 3b0423f6fec7c74b7b05f4e522b40f89
date: Mon, 22 Jul 2024 20:19:47 GMT
strict-transport-security: max-age=31536000

# curl https://index.docker.io -I
HTTP/1.1 200 OK
date: Mon, 22 Jul 2024 20:36:06 GMT
content-type: text/html; charset=utf-8
x-xss-protection: 1; mode=block
x-docker-correlation-id: 4409e3df-45e4-4568-9f7e-b76cc5c312ea
x-docker-app-version: v4558.0.0
accept-ch: Sec-CH-Prefers-Color-Scheme
vary: Sec-CH-Prefers-Color-Scheme, Accept-Encoding
x-frame-options: deny
x-content-type-options: nosniff
strict-transport-security: max-age=31536000

# curl https://ghcr.io/token -I
HTTP/2 405 
content-type: application/json
docker-distribution-api-version: registry/2.0
date: Mon, 22 Jul 2024 20:37:18 GMT
content-length: 78
x-github-request-id: 149B:9FEEA:9333F9:AA4516:669EC2FE

Shows that it's making a connection to the server(s) at least, and I have a hard time believing that my 40ish containers are enough to hit the api limit, even with both DS and diun running (and diun was set to run only twice a day).

I'll leave diun off for a while longer however and just have DS just in case.

Most recent complete log

``` [WEB] ▲ Next.js 14.1.0 [WEB] - Local: http://c4b04091815d:3000/ [WEB] - Network: http://172.22.0.6:3000/ [WEB] [WEB] ✓ Ready in 97ms [SERVER] INFO Using path src/app/api/main.py [SERVER] INFO Resolved absolute path /app/docking-station-app/src/app/api/main.py [SERVER] INFO Searching for package file structure from directories with __init__.py [SERVER] files [SERVER] INFO Importing from /app/docking-station-app/src/app [SERVER] [SERVER] ╭─ Python package file structure ─╮ [SERVER] │ │ [SERVER] │ 📁 api │ [SERVER] │ ├── 🐍 __init__.py │ [SERVER] │ └── 🐍 main.py │ [SERVER] │ │ [SERVER] ╰─────────────────────────────────╯ [SERVER] [SERVER] INFO Importing module api.main [WEB] Failed to proxy http://127.0.0.1:3001/api/stacks Error: connect ECONNREFUSED 127.0.0.1:3001 [WEB] at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1549:16) { [WEB] errno: -111, [WEB] code: 'ECONNREFUSED', [WEB] syscall: 'connect', [WEB] address: '127.0.0.1', [WEB] port: 3001 [WEB] } [WEB] Error: connect ECONNREFUSED 127.0.0.1:3001 [WEB] at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1549:16) { [WEB] errno: -111, [WEB] code: 'ECONNREFUSED', [WEB] syscall: 'connect', [WEB] address: '127.0.0.1', [WEB] port: 3001 [WEB] } [SERVER] INFO Found importable FastAPI app [SERVER] [SERVER] ╭── Importable FastAPI app ──╮ [SERVER] │ │ [SERVER] │ from api.main import app │ [SERVER] │ │ [SERVER] ╰────────────────────────────╯ [SERVER] [SERVER] INFO Using import string api.main:app [SERVER] [SERVER] ╭─────────── FastAPI CLI - Production mode ───────────╮ [SERVER] │ │ [SERVER] │ Serving at: http://0.0.0.0:3001/ │ [SERVER] │ │ [SERVER] │ API docs: http://0.0.0.0:3001/docs │ [SERVER] │ │ [SERVER] │ Running in production mode, for development use: │ [SERVER] │ │ [SERVER] │ fastapi dev │ [SERVER] │ │ [SERVER] ╰─────────────────────────────────────────────────────╯ [SERVER] [SERVER] INFO: Started server process [19] [SERVER] INFO: Waiting for application startup. [SERVER] INFO: Application startup complete. [SERVER] INFO: Uvicorn running on http://0.0.0.0:3001/ (Press CTRL+C to quit) [AUTO-UPDATER] INFO: Auto updater is disabled [AUTO-UPDATER] NODE_ENV=production sleep 5 && python -m src.app.api.auto_updater exited with code 0 [SERVER] INFO: 127.0.0.1:34138 - "GET /api/settings HTTP/1.1" 200 [SERVER] ERROR: Exception in ASGI application [SERVER] Traceback (most recent call last): [SERVER] File "/usr/local/lib/python3.12/site-packages/uvicorn/protocols/http/httptools_impl.py", line 399, in run_asgi [SERVER] result = await app( # type: ignore[func-returns-value] [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/uvicorn/middleware/proxy_headers.py", line 70, in __call__ [SERVER] return await self.app(scope, receive, send) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/applications.py", line 1054, in __call__ [SERVER] await super().__call__(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/applications.py", line 123, in __call__ [SERVER] await self.middleware_stack(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 186, in __call__ [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 164, in __call__ [SERVER] await self.app(scope, receive, _send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/cors.py", line 85, in __call__ [SERVER] await self.app(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/exceptions.py", line 65, in __call__ [SERVER] await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app [SERVER] await app(scope, receive, sender) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 756, in __call__ [SERVER] await self.middleware_stack(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 776, in app [SERVER] await route.handle(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 297, in handle [SERVER] await self.app(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 77, in app [SERVER] await wrap_app_handling_exceptions(app, request)(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app [SERVER] await app(scope, receive, sender) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 72, in app [SERVER] response = await func(request) [SERVER] ^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 278, in app [SERVER] raw_response = await run_endpoint_function( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 191, in run_endpoint_function [SERVER] return await dependant.call(**values) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/settings/cache.py", line 231, in inner [SERVER] ret = await ensure_async_func(*args, **kwargs) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/settings/cache.py", line 136, in ensure_async_func [SERVER] return await func(*args, **kwargs) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/routes/stacks.py", line 29, in list_compose_stacks [SERVER] return await docker_services.list_compose_stacks( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 167, in list_compose_stacks [SERVER] stacks = await asyncio.gather(*[ [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 159, in _task [SERVER] stack.services = await list_containers( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 68, in list_containers [SERVER] await asyncio.gather(*[ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 56, in _task [SERVER] res.image = await get_image( [SERVER] ^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 147, in get_image [SERVER] raise KeyError(repository_or_tag) [SERVER] KeyError: 'docker.io/library/postgres:15' [SERVER] DEBUG: regctl image digest request: ghcr.io/paperless-ngx/paperless-ngx:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/resilio-sync:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/mealie-recipes/mealie:latest [SERVER] DEBUG: regctl image digest request: louislam/dockge:1 [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/transmission [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/transmission [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/transmission [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/transmission [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/transmission:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/sabnzbd:latest [SERVER] DEBUG: regctl image digest request: onerahmet/openai-whisper-asr-webservice:latest-gpu [SERVER] DEBUG: regctl image digest request: ghcr.io/recyclarr/recyclarr:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/recyclarr/recyclarr [SERVER] DEBUG: regctl image digest request: ghcr.io/recyclarr/recyclarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr [SERVER] DEBUG: regctl image digest request: ghcr.io/flaresolverr/flaresolverr:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/gethomepage/homepage:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/immich-app/immich-machine-learning:release-cuda [SERVER] DEBUG: regctl image digest request: ghcr.io/immich-app/immich-server:release [SERVER] DEBUG: regctl image digest request: prodrigestivill/postgres-backup-local [SERVER] DEBUG: regctl image digest request: prodrigestivill/postgres-backup-local:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/jellyfin/jellyfin:latest [SERVER] DEBUG: regctl image digest request: cyfershepard/jellystat:latest [SERVER] DEBUG: regctl image digest request: postgres:15.2 [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui:latest [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: rommapp/romm:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/mariadb:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/swingmx/swingmusic:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/advplyr/audiobookshelf:latest [SERVER] DEBUG: regctl image digest request: misterbabou/gptwol:latest [SERVER] DEBUG: regctl image digest request: hurlenko/filebrowser:latest [SERVER] DEBUG: regctl image digest request: loolzzz/docking-station:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/speedtest-tracker:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/analogj/scrutiny:master-omnibus [SERVER] DEBUG: regctl image digest request: deetoreu/nut-http:latest [SERVER] DEBUG: regctl image digest request: nicolargo/glances:ubuntu-dev [SERVER] DEBUG: regctl image digest request: amir20/dozzle:latest [SERVER] INFO: 127.0.0.1:34134 - "GET /api/stacks HTTP/1.1" 500 [SERVER] ERROR: Exception in ASGI application [SERVER] Traceback (most recent call last): [SERVER] File "/usr/local/lib/python3.12/site-packages/uvicorn/protocols/http/httptools_impl.py", line 399, in run_asgi [SERVER] result = await app( # type: ignore[func-returns-value] [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/uvicorn/middleware/proxy_headers.py", line 70, in __call__ [SERVER] return await self.app(scope, receive, send) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/applications.py", line 1054, in __call__ [SERVER] await super().__call__(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/applications.py", line 123, in __call__ [SERVER] await self.middleware_stack(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 186, in __call__ [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 164, in __call__ [SERVER] await self.app(scope, receive, _send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/cors.py", line 85, in __call__ [SERVER] await self.app(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/exceptions.py", line 65, in __call__ [SERVER] await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app [SERVER] await app(scope, receive, sender) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 756, in __call__ [SERVER] await self.middleware_stack(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 776, in app [SERVER] await route.handle(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 297, in handle [SERVER] await self.app(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 77, in app [SERVER] await wrap_app_handling_exceptions(app, request)(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app [SERVER] await app(scope, receive, sender) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 72, in app [SERVER] response = await func(request) [SERVER] ^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 278, in app [SERVER] raw_response = await run_endpoint_function( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 191, in run_endpoint_function [SERVER] return await dependant.call(**values) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/settings/cache.py", line 231, in inner [SERVER] ret = await ensure_async_func(*args, **kwargs) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/settings/cache.py", line 136, in ensure_async_func [SERVER] return await func(*args, **kwargs) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/routes/stacks.py", line 29, in list_compose_stacks [SERVER] return await docker_services.list_compose_stacks( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 167, in list_compose_stacks [SERVER] stacks = await asyncio.gather(*[ [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 159, in _task [SERVER] stack.services = await list_containers( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 68, in list_containers [SERVER] await asyncio.gather(*[ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 56, in _task [SERVER] res.image = await get_image( [SERVER] ^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 147, in get_image [SERVER] raise KeyError(repository_or_tag) [SERVER] KeyError: 'docker.io/library/postgres:15' [SERVER] INFO: regctl image digest response: ghcr.io/paperless-ngx/paperless-ngx@sha256:840534349ee4e7bc2f0b9caa90fbdf6d1e9c00463a95b35a863edca0ed5f3049 [SERVER] INFO: regctl image digest response: ghcr.io/mealie-recipes/mealie@sha256:54a976880161c3c96de30b63cd0092d1f069aa8b23686669b726558ddf112724 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] INFO: regctl image digest response: ghcr.io/flaresolverr/flaresolverr@sha256:f104ee51e5124d83cf3be9b37480649355d223f7d8f9e453d0d5ef06c6e3b31b [SERVER] INFO: regctl image digest response: ghcr.io/gethomepage/homepage@sha256:e23fcd332ecf927fe5c0149142040236b17686916004566c149eef06eb6f8d75 [SERVER] INFO: regctl image digest response: ghcr.io/immich-app/immich-machine-learning@sha256:10e630facf589ab500c141346b062af5649f9773904ae73dfd3cff181ba27a84 [SERVER] INFO: regctl image digest response: ghcr.io/immich-app/immich-server@sha256:79f5d0c375b0df84e4d0ac89103753d6145ec3facb329e860008f2813f647d84 [SERVER] INFO: regctl image digest response: ghcr.io/jellyfin/jellyfin@sha256:836232f7ffa1fdac5d043a592806422c33c68da2616f303f831e3ac25bfb6f1a [SERVER] DEBUG: regctl image digest request: ghcr.io/paperless-ngx/paperless-ngx:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/resilio-sync:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/mealie-recipes/mealie:latest [SERVER] DEBUG: regctl image digest request: louislam/dockge:1 [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/transmission [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/transmission [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/transmission [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/transmission [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/transmission:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/sonarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/prowlarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: ghcr.io/linuxserver/radarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/sabnzbd:latest [SERVER] DEBUG: regctl image digest request: onerahmet/openai-whisper-asr-webservice:latest-gpu [SERVER] DEBUG: regctl image digest request: ghcr.io/recyclarr/recyclarr:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/recyclarr/recyclarr [SERVER] DEBUG: regctl image digest request: ghcr.io/recyclarr/recyclarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/bazarr [SERVER] DEBUG: regctl image digest request: ghcr.io/flaresolverr/flaresolverr:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/gethomepage/homepage:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/immich-app/immich-machine-learning:release-cuda [SERVER] DEBUG: regctl image digest request: ghcr.io/immich-app/immich-server:release [SERVER] DEBUG: regctl image digest request: prodrigestivill/postgres-backup-local [SERVER] DEBUG: regctl image digest request: prodrigestivill/postgres-backup-local:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/jellyfin/jellyfin:latest [SERVER] DEBUG: regctl image digest request: cyfershepard/jellystat:latest [SERVER] DEBUG: regctl image digest request: postgres:15.2 [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui:latest [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: marcobaobao/yt-dlp-webui [SERVER] DEBUG: regctl image digest request: rommapp/romm:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/mariadb:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/swingmx/swingmusic:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/advplyr/audiobookshelf:latest [SERVER] DEBUG: regctl image digest request: misterbabou/gptwol:latest [SERVER] DEBUG: regctl image digest request: hurlenko/filebrowser:latest [SERVER] DEBUG: regctl image digest request: loolzzz/docking-station:latest [SERVER] DEBUG: regctl image digest request: lscr.io/linuxserver/speedtest-tracker:latest [SERVER] DEBUG: regctl image digest request: ghcr.io/analogj/scrutiny:master-omnibus [SERVER] DEBUG: regctl image digest request: deetoreu/nut-http:latest [SERVER] DEBUG: regctl image digest request: nicolargo/glances:ubuntu-dev [SERVER] DEBUG: regctl image digest request: amir20/dozzle:latest [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/bazarr@sha256:5da74fc1bbd5da69e3b4f9b2376f6ccfbe3b47f143e6eb5651ed37cc1d4412dd [SERVER] INFO: regctl image digest response: ghcr.io/paperless-ngx/paperless-ngx@sha256:840534349ee4e7bc2f0b9caa90fbdf6d1e9c00463a95b35a863edca0ed5f3049 [SERVER] INFO: regctl image digest response: ghcr.io/mealie-recipes/mealie@sha256:54a976880161c3c96de30b63cd0092d1f069aa8b23686669b726558ddf112724 [SERVER] DEBUG: regctl image inspect request: ghcr.io/paperless-ngx/paperless-ngx@sha256:840534349ee4e7bc2f0b9caa90fbdf6d1e9c00463a95b35a863edca0ed5f3049 [SERVER] DEBUG: regctl image inspect request: ghcr.io/mealie-recipes/mealie@sha256:54a976880161c3c96de30b63cd0092d1f069aa8b23686669b726558ddf112724 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] DEBUG: regctl image inspect request: ghcr.io/flaresolverr/flaresolverr@sha256:f104ee51e5124d83cf3be9b37480649355d223f7d8f9e453d0d5ef06c6e3b31b [SERVER] DEBUG: regctl image inspect request: ghcr.io/gethomepage/homepage@sha256:e23fcd332ecf927fe5c0149142040236b17686916004566c149eef06eb6f8d75 [SERVER] DEBUG: regctl image inspect request: ghcr.io/immich-app/immich-machine-learning@sha256:10e630facf589ab500c141346b062af5649f9773904ae73dfd3cff181ba27a84 [SERVER] DEBUG: regctl image inspect request: ghcr.io/immich-app/immich-server@sha256:79f5d0c375b0df84e4d0ac89103753d6145ec3facb329e860008f2813f647d84 [SERVER] DEBUG: regctl image inspect request: ghcr.io/jellyfin/jellyfin@sha256:836232f7ffa1fdac5d043a592806422c33c68da2616f303f831e3ac25bfb6f1a [SERVER] INFO: regctl image digest response: amir20/dozzle@sha256:ff10ff9ec941e1c41f9f19de790b47f8feaf1e0228282c62b9d6d7aa44395a71 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] DEBUG: regctl image inspect request: lscr.io/linuxserver/bazarr@sha256:5da74fc1bbd5da69e3b4f9b2376f6ccfbe3b47f143e6eb5651ed37cc1d4412dd [SERVER] DEBUG: regctl image inspect request: ghcr.io/paperless-ngx/paperless-ngx@sha256:840534349ee4e7bc2f0b9caa90fbdf6d1e9c00463a95b35a863edca0ed5f3049 [SERVER] DEBUG: regctl image inspect request: ghcr.io/mealie-recipes/mealie@sha256:54a976880161c3c96de30b63cd0092d1f069aa8b23686669b726558ddf112724 [SERVER] DEBUG: regctl image inspect request: amir20/dozzle@sha256:ff10ff9ec941e1c41f9f19de790b47f8feaf1e0228282c62b9d6d7aa44395a71 [SERVER] INFO: regctl image inspect response: 2024-07-05 06:08:27.871856+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-21 14:50:37.366784+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head lscr.io/linuxserver/resilio-sync:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:37260->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] INFO: regctl image digest response: prodrigestivill/postgres-backup-local@sha256:f873bbfb406db633ab879628b11ef8092279639c467a2ea5f5bfa08b776252fb [SERVER] DEBUG: regctl image inspect request: prodrigestivill/postgres-backup-local@sha256:f873bbfb406db633ab879628b11ef8092279639c467a2ea5f5bfa08b776252fb [SERVER] INFO: regctl image digest response: ghcr.io/flaresolverr/flaresolverr@sha256:f104ee51e5124d83cf3be9b37480649355d223f7d8f9e453d0d5ef06c6e3b31b [SERVER] DEBUG: regctl image inspect request: ghcr.io/flaresolverr/flaresolverr@sha256:f104ee51e5124d83cf3be9b37480649355d223f7d8f9e453d0d5ef06c6e3b31b [SERVER] INFO: regctl image digest response: ghcr.io/gethomepage/homepage@sha256:e23fcd332ecf927fe5c0149142040236b17686916004566c149eef06eb6f8d75 [SERVER] DEBUG: regctl image inspect request: ghcr.io/gethomepage/homepage@sha256:e23fcd332ecf927fe5c0149142040236b17686916004566c149eef06eb6f8d75 [SERVER] INFO: regctl image inspect response: 2024-07-22 18:26:29.473865+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-05 06:08:27.871856+00:00 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/prowlarr@sha256:7c3e7840c726828643131583514b66f38e7af29021d5a7b05ed8ed5c8ec0b596 [SERVER] DEBUG: regctl image inspect request: lscr.io/linuxserver/prowlarr@sha256:7c3e7840c726828643131583514b66f38e7af29021d5a7b05ed8ed5c8ec0b596 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/prowlarr@sha256:7c3e7840c726828643131583514b66f38e7af29021d5a7b05ed8ed5c8ec0b596 [SERVER] DEBUG: regctl image inspect request: lscr.io/linuxserver/prowlarr@sha256:7c3e7840c726828643131583514b66f38e7af29021d5a7b05ed8ed5c8ec0b596 [SERVER] INFO: regctl image digest response: marcobaobao/yt-dlp-webui@sha256:db51572b9d1bb818e2c1a4d057a2c136e3faeeb4829f5bcb822f5e5a23644d9a [SERVER] DEBUG: regctl image inspect request: marcobaobao/yt-dlp-webui@sha256:db51572b9d1bb818e2c1a4d057a2c136e3faeeb4829f5bcb822f5e5a23644d9a [SERVER] INFO: regctl image inspect response: 2024-07-21 02:07:32.414052+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head docker.io/louislam/dockge:1: failed to request auth token (get): Get "[https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Alouislam%2Fdockge%3Apull&service=registry.docker.io":](https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Alouislam%2Fdockge%3Apull&service=registry.docker.io%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:54338->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head lscr.io/linuxserver/bazarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:52142->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image digest response: marcobaobao/yt-dlp-webui@sha256:db51572b9d1bb818e2c1a4d057a2c136e3faeeb4829f5bcb822f5e5a23644d9a [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] INFO: regctl image digest response: ghcr.io/swingmx/swingmusic@sha256:e6ccef307ebeadac967de0565b75e4906615ecfaac2a8f6bb82be13f111439d5 [SERVER] DEBUG: regctl image inspect request: ghcr.io/swingmx/swingmusic@sha256:e6ccef307ebeadac967de0565b75e4906615ecfaac2a8f6bb82be13f111439d5 [SERVER] INFO: regctl image digest response: ghcr.io/immich-app/immich-server@sha256:79f5d0c375b0df84e4d0ac89103753d6145ec3facb329e860008f2813f647d84 [SERVER] DEBUG: regctl image inspect request: ghcr.io/immich-app/immich-server@sha256:79f5d0c375b0df84e4d0ac89103753d6145ec3facb329e860008f2813f647d84 [SERVER] INFO: regctl image digest response: ghcr.io/advplyr/audiobookshelf@sha256:725c287ac1b56f8115dfc7fca75d8490976af59466f893fbf344711bd117f8cb [SERVER] DEBUG: regctl image inspect request: ghcr.io/advplyr/audiobookshelf@sha256:725c287ac1b56f8115dfc7fca75d8490976af59466f893fbf344711bd117f8cb [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/mariadb@sha256:def8604e3d67f3c788a5e6239809c833e36dd1176ab166b126a617a10827eed6 [SERVER] DEBUG: regctl image inspect request: lscr.io/linuxserver/mariadb@sha256:def8604e3d67f3c788a5e6239809c833e36dd1176ab166b126a617a10827eed6 [SERVER] INFO: regctl image inspect response: 2024-07-16 10:35:32.106158+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-16 10:35:32.106158+00:00 [SERVER] INFO: regctl image inspect response: 2024-02-26 06:59:05.105449+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-18 19:48:33.640359+00:00 [SERVER] INFO: regctl image digest response: louislam/dockge@sha256:ec889251baff476366783bc4a092aaa08c601f377537a0f30fb922754edcd9b7 [SERVER] DEBUG: regctl image inspect request: louislam/dockge@sha256:ec889251baff476366783bc4a092aaa08c601f377537a0f30fb922754edcd9b7 [SERVER] INFO: regctl image inspect response: 2024-07-18 19:48:33.640359+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head docker.io/prodrigestivill/postgres-backup-local:latest: failed to request auth token (get): Get "[https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Aprodrigestivill%2Fpostgres-backup-local%3Apull&service=registry.docker.io":](https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Aprodrigestivill%2Fpostgres-backup-local%3Apull&service=registry.docker.io%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:41102->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head lscr.io/linuxserver/bazarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:59950->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2024-07-16 07:47:00.101943+00:00 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/transmission@sha256:17b10956b1711c989140023cbd8a71d3683f6bbb1b5d1ee0c8cdac45b028fffc [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/prowlarr@sha256:7c3e7840c726828643131583514b66f38e7af29021d5a7b05ed8ed5c8ec0b596 [SERVER] DEBUG: regctl image inspect request: lscr.io/linuxserver/prowlarr@sha256:7c3e7840c726828643131583514b66f38e7af29021d5a7b05ed8ed5c8ec0b596 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] INFO: regctl image inspect response: 2024-07-16 10:35:32.106158+00:00 [SERVER] INFO: regctl image digest response: ghcr.io/immich-app/immich-machine-learning@sha256:10e630facf589ab500c141346b062af5649f9773904ae73dfd3cff181ba27a84 [SERVER] DEBUG: regctl image inspect request: ghcr.io/immich-app/immich-machine-learning@sha256:10e630facf589ab500c141346b062af5649f9773904ae73dfd3cff181ba27a84 [SERVER] INFO: regctl image inspect response: 2024-07-18 20:01:02.570384+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-16 10:35:32.106158+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-16 13:26:35.141553+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head lscr.io/linuxserver/resilio-sync:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:51617->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2024-01-21 16:55:47.994464+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head lscr.io/linuxserver/bazarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:48310->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head lscr.io/linuxserver/bazarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:46495->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head lscr.io/linuxserver/bazarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:55972->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to request manifest head lscr.io/linuxserver/bazarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:39642->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] INFO: regctl image digest response: ghcr.io/jellyfin/jellyfin@sha256:836232f7ffa1fdac5d043a592806422c33c68da2616f303f831e3ac25bfb6f1a [SERVER] DEBUG: regctl image inspect request: ghcr.io/jellyfin/jellyfin@sha256:836232f7ffa1fdac5d043a592806422c33c68da2616f303f831e3ac25bfb6f1a [SERVER] INFO: regctl image inspect response: 2024-07-07 22:24:02.258230+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-16 10:35:32.106158+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-16 10:35:32.106158+00:00 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/prowlarr@sha256:7c3e7840c726828643131583514b66f38e7af29021d5a7b05ed8ed5c8ec0b596 [SERVER] DEBUG: regctl image inspect request: lscr.io/linuxserver/prowlarr@sha256:7c3e7840c726828643131583514b66f38e7af29021d5a7b05ed8ed5c8ec0b596 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/sonarr@sha256:fbee5770f688e4f89dd073534feda11251bfde0e0a4e6ac74dd8c33bb856b505 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:00-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996203 [SERVER] failed to request manifest head docker.io/misterbabou/gptwol:latest: failed to request auth token (post): Post "[https://auth.docker.io/token":](https://auth.docker.io/token%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:37223->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.9999966439999999 [SERVER] failed to request manifest head docker.io/loolzzz/docking-station:latest: failed to request auth token (post): Post "[https://auth.docker.io/token":](https://auth.docker.io/token%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:37638->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image digest response: prodrigestivill/postgres-backup-local@sha256:f873bbfb406db633ab879628b11ef8092279639c467a2ea5f5bfa08b776252fb [SERVER] DEBUG: regctl image inspect request: prodrigestivill/postgres-backup-local@sha256:f873bbfb406db633ab879628b11ef8092279639c467a2ea5f5bfa08b776252fb [SERVER] INFO: regctl image inspect response: 2024-06-26 01:16:15.775655+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-18 06:25:14.748848+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-18 20:01:02.570384+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-21 05:16:34.896561+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-16 13:26:35.141553+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-16 13:26:35.141553+00:00 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] DEBUG: regctl image inspect request: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] INFO: regctl image digest response: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] DEBUG: regctl image inspect request: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] INFO: regctl image inspect response: 2024-07-21 15:12:00.052046+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-21 15:12:00.052046+00:00 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/sabnzbd@sha256:31ea64a7ce1e9a5ff8187f9b7c905eaa1d0a79d49b04724e47059c67407157eb [SERVER] DEBUG: regctl image inspect request: lscr.io/linuxserver/sabnzbd@sha256:31ea64a7ce1e9a5ff8187f9b7c905eaa1d0a79d49b04724e47059c67407157eb [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:09:59-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.9999960319999999 [SERVER] failed to request manifest head lscr.io/linuxserver/prowlarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:35013->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:09:59-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.999996494 [SERVER] failed to request manifest head lscr.io/linuxserver/prowlarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:52001->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image digest response: ghcr.io/analogj/scrutiny@sha256:37ed876b24caec09aa127baa95eae05b00c6f61022585719c77da2b0fc6646c6 [SERVER] DEBUG: regctl image inspect request: ghcr.io/analogj/scrutiny@sha256:37ed876b24caec09aa127baa95eae05b00c6f61022585719c77da2b0fc6646c6 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996543 [SERVER] failed to request manifest head docker.io/cyfershepard/jellystat:latest: failed to request auth token (post): Post "[https://auth.docker.io/token":](https://auth.docker.io/token%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:45398->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:06-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999995813 [SERVER] failed to request manifest head docker.io/deetoreu/nut-http:latest: failed to request auth token (post): Post "[https://auth.docker.io/token":](https://auth.docker.io/token%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:58455->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2024-07-16 13:26:35.141553+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-16 13:26:35.141553+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-21 15:12:00.052046+00:00 [SERVER] INFO: regctl image digest response: onerahmet/openai-whisper-asr-webservice@sha256:1daf8b3d5b32c92778c6ae08d2640ae81278f0960f200a38ac7e55a13ed81710 [SERVER] DEBUG: regctl image inspect request: onerahmet/openai-whisper-asr-webservice@sha256:1daf8b3d5b32c92778c6ae08d2640ae81278f0960f200a38ac7e55a13ed81710 [SERVER] INFO: regctl image digest response: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] DEBUG: regctl image inspect request: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/prowlarr@sha256:7c3e7840c726828643131583514b66f38e7af29021d5a7b05ed8ed5c8ec0b596 [SERVER] DEBUG: regctl image inspect request: lscr.io/linuxserver/prowlarr@sha256:7c3e7840c726828643131583514b66f38e7af29021d5a7b05ed8ed5c8ec0b596 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:09-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.999996954 [SERVER] failed to request manifest head lscr.io/linuxserver/prowlarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:48037->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.9999964129999999 [SERVER] failed to request manifest head docker.io/library/postgres:15.2: failed to request auth token (get): Get "[https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Alibrary%2Fpostgres%3Apull&service=registry.docker.io":](https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Alibrary%2Fpostgres%3Apull&service=registry.docker.io%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:46561->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996053 [SERVER] failed to request manifest head docker.io/nicolargo/glances:ubuntu-dev: failed to request auth token (post): Post "[https://auth.docker.io/token":](https://auth.docker.io/token%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:45823->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996494 [SERVER] failed to request manifest head docker.io/hurlenko/filebrowser:latest: failed to request auth token (get): Get "[https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Ahurlenko%2Ffilebrowser%3Apull&service=registry.docker.io":](https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Ahurlenko%2Ffilebrowser%3Apull&service=registry.docker.io%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:58645->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.999996643 [SERVER] failed to request manifest head lscr.io/linuxserver/speedtest-tracker:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:44088->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:06-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996203 [SERVER] failed to request manifest head docker.io/misterbabou/gptwol:latest: failed to request auth token (get): Get "[https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Amisterbabou%2Fgptwol%3Apull&service=registry.docker.io":](https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Amisterbabou%2Fgptwol%3Apull&service=registry.docker.io%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:37588->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2024-07-16 13:26:35.141553+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-21 15:12:00.052046+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-21 15:12:00.052046+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:12-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.999995732 [SERVER] failed to get manifest: failed to get manifest lscr.io/linuxserver/bazarr@sha256:5da74fc1bbd5da69e3b4f9b2376f6ccfbe3b47f143e6eb5651ed37cc1d4412dd: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:40142->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image digest response: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] DEBUG: regctl image inspect request: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] INFO: regctl image digest response: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] DEBUG: regctl image inspect request: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] INFO: regctl image digest response: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] DEBUG: regctl image inspect request: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:09-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.999995822 [SERVER] failed to request manifest head lscr.io/linuxserver/prowlarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:37855->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image digest response: marcobaobao/yt-dlp-webui@sha256:db51572b9d1bb818e2c1a4d057a2c136e3faeeb4829f5bcb822f5e5a23644d9a [SERVER] INFO: regctl image digest response: marcobaobao/yt-dlp-webui@sha256:db51572b9d1bb818e2c1a4d057a2c136e3faeeb4829f5bcb822f5e5a23644d9a [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:04-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.999995863 [SERVER] failed to request manifest head lscr.io/linuxserver/prowlarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:48443->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:00-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996433 [SERVER] failed to request manifest head docker.io/rommapp/romm:latest: failed to request auth token (get): Get "[https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Arommapp%2Fromm%3Apull&service=registry.docker.io":](https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Arommapp%2Fromm%3Apull&service=registry.docker.io%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:33794->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:10-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996333 [SERVER] failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: failed to request auth token (post): Post "[https://auth.docker.io/token":](https://auth.docker.io/token%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:35737->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.9999957720000001 [SERVER] failed to request manifest head docker.io/amir20/dozzle:latest: failed to request auth token (post): Post "[https://auth.docker.io/token":](https://auth.docker.io/token%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:42868->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:10-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.99999499 [SERVER] failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: failed to request auth token (post): Post "[https://auth.docker.io/token":](https://auth.docker.io/token%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:49135->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996172 [SERVER] failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: failed to request auth token (get): Get "[https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Amarcobaobao%2Fyt-dlp-webui%3Apull&service=registry.docker.io":](https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Amarcobaobao%2Fyt-dlp-webui%3Apull&service=registry.docker.io%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:60191->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2024-07-16 10:35:32.106158+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-16 10:35:32.106158+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-21 15:12:00.052046+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:17-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.999996493 [SERVER] failed to get manifest: failed to get manifest lscr.io/linuxserver/prowlarr@sha256:7c3e7840c726828643131583514b66f38e7af29021d5a7b05ed8ed5c8ec0b596: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:35187->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2024-07-17 03:49:24.949203+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-21 15:12:00.052046+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-17 03:49:24.949203+00:00 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] INFO: regctl image digest response: ghcr.io/linuxserver/radarr@sha256:2a02b311cefb344cd0caf74a443b9d6318daf15bda5280a3bc732381db983dc3 [SERVER] INFO: regctl image digest response: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] DEBUG: regctl image inspect request: ghcr.io/recyclarr/recyclarr@sha256:3bc426b72453e76767a7f2144ebcea2870cdf1ecfef6886ee1115c88890f9091 [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/prowlarr@sha256:7c3e7840c726828643131583514b66f38e7af29021d5a7b05ed8ed5c8ec0b596 [SERVER] INFO: regctl image digest response: ghcr.io/swingmx/swingmusic@sha256:e6ccef307ebeadac967de0565b75e4906615ecfaac2a8f6bb82be13f111439d5 [SERVER] INFO: regctl image inspect response: 2024-07-18 06:25:14.748848+00:00 [SERVER] INFO: regctl image digest response: nicolargo/glances@sha256:3d90a32b004f45763086e91b08f24734d3c1df02a79edfa9b78969c48f46b7ca [SERVER] DEBUG: regctl image inspect request: nicolargo/glances@sha256:3d90a32b004f45763086e91b08f24734d3c1df02a79edfa9b78969c48f46b7ca [SERVER] INFO: regctl image digest response: lscr.io/linuxserver/mariadb@sha256:def8604e3d67f3c788a5e6239809c833e36dd1176ab166b126a617a10827eed6 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:10-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996083 [SERVER] failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: failed to request auth token (get): Get "[https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Amarcobaobao%2Fyt-dlp-webui%3Apull&service=registry.docker.io":](https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Amarcobaobao%2Fyt-dlp-webui%3Apull&service=registry.docker.io%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:37097->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2024-07-21 15:12:00.052046+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-16 10:35:32.106158+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:17-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.999995763 [SERVER] failed to get manifest: failed to get manifest lscr.io/linuxserver/prowlarr@sha256:7c3e7840c726828643131583514b66f38e7af29021d5a7b05ed8ed5c8ec0b596: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:42193->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:09-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.9999948 [SERVER] time="2024-07-22T16:10:26-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=3.99998956 [SERVER] failed to request manifest head lscr.io/linuxserver/prowlarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:47103->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:04-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.999996994 [SERVER] time="2024-07-22T16:10:27-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=3.999972719 [SERVER] failed to request manifest head lscr.io/linuxserver/bazarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:33215->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.999984972 [SERVER] time="2024-07-22T16:10:27-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=3.999982438 [SERVER] failed to request manifest head lscr.io/linuxserver/bazarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:44850->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996533 [SERVER] time="2024-07-22T16:10:27-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.999992165 [SERVER] failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: Head "[https://registry-1.docker.io/v2/marcobaobao/yt-dlp-webui/manifests/latest":](https://registry-1.docker.io/v2/marcobaobao/yt-dlp-webui/manifests/latest%22:) dial tcp: lookup registry-1.docker.io on 127.0.0.11:53: read udp 127.0.0.1:50624->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.999996844 [SERVER] time="2024-07-22T16:10:27-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=3.999982938 [SERVER] failed to request manifest head lscr.io/linuxserver/bazarr:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:55087->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image digest response: onerahmet/openai-whisper-asr-webservice@sha256:1daf8b3d5b32c92778c6ae08d2640ae81278f0960f200a38ac7e55a13ed81710 [SERVER] DEBUG: regctl image inspect request: onerahmet/openai-whisper-asr-webservice@sha256:1daf8b3d5b32c92778c6ae08d2640ae81278f0960f200a38ac7e55a13ed81710 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:06-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.999996554 [SERVER] time="2024-07-22T16:10:23-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=3.9999913940000003 [SERVER] failed to request manifest head lscr.io/linuxserver/speedtest-tracker:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:45712->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2024-07-21 17:22:12.571566+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-12 16:07:45.318236+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-12 16:07:45.318236+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-18 01:51:56.542115+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-18 01:46:12.365294+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-21 05:16:34.896561+00:00 [SERVER] INFO: regctl image inspect response: 2024-06-20 11:38:45.451183+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996594 [SERVER] time="2024-07-22T16:10:27-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.9999793009999998 [SERVER] failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: Head "[https://registry-1.docker.io/v2/marcobaobao/yt-dlp-webui/manifests/latest":](https://registry-1.docker.io/v2/marcobaobao/yt-dlp-webui/manifests/latest%22:) dial tcp: lookup registry-1.docker.io on 127.0.0.11:53: read udp 127.0.0.1:51428->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999995662 [SERVER] time="2024-07-22T16:10:22-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.999991585 [SERVER] failed to request manifest head docker.io/library/postgres:15.2: failed to request auth token (get): Get "[https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Alibrary%2Fpostgres%3Apull&service=registry.docker.io":](https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Alibrary%2Fpostgres%3Apull&service=registry.docker.io%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:44688->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: failed to get manifest: failed to get manifest docker.io/onerahmet/openai-whisper-asr-webservice@sha256:1daf8b3d5b32c92778c6ae08d2640ae81278f0960f200a38ac7e55a13ed81710: failed to request auth token (post): Post "[https://auth.docker.io/token":](https://auth.docker.io/token%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:39371->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999995862 [SERVER] time="2024-07-22T16:10:22-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.999991505 [SERVER] failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: Head "[https://registry-1.docker.io/v2/marcobaobao/yt-dlp-webui/manifests/latest":](https://registry-1.docker.io/v2/marcobaobao/yt-dlp-webui/manifests/latest%22:) dial tcp: lookup registry-1.docker.io on 127.0.0.11:53: read udp 127.0.0.1:53127->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:10-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=1.9999966630000001 [SERVER] time="2024-07-22T16:10:22-04:00" level=warning msg="Sleeping for backoff" Host=lscr.io Seconds=3.999990482 [SERVER] failed to request manifest head lscr.io/linuxserver/sabnzbd:latest: failed to request auth token (post): Post "[https://ghcr.io/token":](https://ghcr.io/token%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:57714->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996664 [SERVER] time="2024-07-22T16:10:27-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.999980754 [SERVER] failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: failed to request auth token (post): Post "[https://auth.docker.io/token":](https://auth.docker.io/token%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:53193->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:00-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999995501 [SERVER] time="2024-07-22T16:10:22-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.999980654 [SERVER] failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: Head "[https://registry-1.docker.io/v2/marcobaobao/yt-dlp-webui/manifests/latest":](https://registry-1.docker.io/v2/marcobaobao/yt-dlp-webui/manifests/latest%22:) dial tcp: lookup registry-1.docker.io on 127.0.0.11:53: read udp 127.0.0.1:46215->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:10-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999990132 [SERVER] time="2024-07-22T16:10:27-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.999995472 [SERVER] failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: Head "[https://registry-1.docker.io/v2/marcobaobao/yt-dlp-webui/manifests/latest":](https://registry-1.docker.io/v2/marcobaobao/yt-dlp-webui/manifests/latest%22:) dial tcp: lookup registry-1.docker.io on 127.0.0.11:53: read udp 127.0.0.1:48501->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image digest response: cyfershepard/jellystat@sha256:92d5cd58779828bb06df982ca735e8e15bb6ab9ba749c0965296946e30428641 [SERVER] DEBUG: regctl image inspect request: cyfershepard/jellystat@sha256:92d5cd58779828bb06df982ca735e8e15bb6ab9ba749c0965296946e30428641 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:11-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996153 [SERVER] time="2024-07-22T16:10:23-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.999988078 [SERVER] failed to request manifest head docker.io/loolzzz/docking-station:latest: Head "[https://registry-1.docker.io/v2/loolzzz/docking-station/manifests/latest":](https://registry-1.docker.io/v2/loolzzz/docking-station/manifests/latest%22:) dial tcp: lookup registry-1.docker.io on 127.0.0.11:53: read udp 127.0.0.1:51537->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:11-04:00" level=warning msg="Sleeping for backoff" Host=ghcr.io Seconds=1.9999967939999999 [SERVER] time="2024-07-22T16:10:23-04:00" level=warning msg="Sleeping for backoff" Host=ghcr.io Seconds=3.999991284 [SERVER] failed to request manifest head ghcr.io/analogj/scrutiny:master-omnibus: Head "[https://ghcr.io/v2/analogj/scrutiny/manifests/master-omnibus":](https://ghcr.io/v2/analogj/scrutiny/manifests/master-omnibus%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:42755->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2024-07-12 16:07:45.318236+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-12 16:07:45.318236+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-12 16:07:45.318236+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-12 16:07:45.318236+00:00 [SERVER] INFO: regctl image inspect response: 2024-06-26 01:16:15.775655+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-17 03:49:24.949203+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-16 13:26:35.141553+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-16 13:26:35.141553+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-16 13:26:35.141553+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-16 13:26:35.141553+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:10-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.99999481 [SERVER] time="2024-07-22T16:10:32-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.999964684 [SERVER] failed to request manifest head docker.io/prodrigestivill/postgres-backup-local:latest: Head "[https://registry-1.docker.io/v2/prodrigestivill/postgres-backup-local/manifests/latest":](https://registry-1.docker.io/v2/prodrigestivill/postgres-backup-local/manifests/latest%22:) dial tcp: lookup registry-1.docker.io on 127.0.0.11:53: read udp 127.0.0.1:36635->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:10-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.99999463 [SERVER] time="2024-07-22T16:10:32-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.999977087 [SERVER] failed to get manifest: failed to get manifest docker.io/prodrigestivill/postgres-backup-local@sha256:f873bbfb406db633ab879628b11ef8092279639c467a2ea5f5bfa08b776252fb: Get "[https://registry-1.docker.io/v2/prodrigestivill/postgres-backup-local/manifests/sha256:f873bbfb406db633ab879628b11ef8092279639c467a2ea5f5bfa08b776252fb":](https://registry-1.docker.io/v2/prodrigestivill/postgres-backup-local/manifests/sha256:f873bbfb406db633ab879628b11ef8092279639c467a2ea5f5bfa08b776252fb%22:) dial tcp: lookup registry-1.docker.io on 127.0.0.11:53: read udp 127.0.0.1:40754->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:10-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996283 [SERVER] time="2024-07-22T16:10:32-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.999980864 [SERVER] failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: Head "[https://registry-1.docker.io/v2/marcobaobao/yt-dlp-webui/manifests/latest":](https://registry-1.docker.io/v2/marcobaobao/yt-dlp-webui/manifests/latest%22:) dial tcp: lookup registry-1.docker.io on 127.0.0.11:53: read udp 127.0.0.1:60158->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:05-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996774 [SERVER] time="2024-07-22T16:10:27-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.999991975 [SERVER] failed to request manifest head docker.io/deetoreu/nut-http:latest: Head "[https://registry-1.docker.io/v2/deetoreu/nut-http/manifests/latest":](https://registry-1.docker.io/v2/deetoreu/nut-http/manifests/latest%22:) dial tcp: lookup registry-1.docker.io on 127.0.0.11:53: read udp 127.0.0.1:52785->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:10-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999996473 [SERVER] time="2024-07-22T16:10:32-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.999991054 [SERVER] failed to request manifest head docker.io/marcobaobao/yt-dlp-webui:latest: Head "[https://registry-1.docker.io/v2/marcobaobao/yt-dlp-webui/manifests/latest":](https://registry-1.docker.io/v2/marcobaobao/yt-dlp-webui/manifests/latest%22:) dial tcp: lookup registry-1.docker.io on 127.0.0.11:53: read udp 127.0.0.1:40257->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:06-04:00" level=warning msg="Sleeping for backoff" Host=ghcr.io Seconds=1.999995752 [SERVER] time="2024-07-22T16:10:28-04:00" level=warning msg="Sleeping for backoff" Host=ghcr.io Seconds=3.999988499 [SERVER] failed to request manifest head ghcr.io/advplyr/audiobookshelf:latest: Head "[https://ghcr.io/v2/advplyr/audiobookshelf/manifests/latest":](https://ghcr.io/v2/advplyr/audiobookshelf/manifests/latest%22:) dial tcp: lookup ghcr.io on 127.0.0.11:53: read udp 127.0.0.1:53899->127.0.0.11:53: i/o timeout [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:11-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.99999446 [SERVER] time="2024-07-22T16:10:28-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.999982017 [SERVER] failed to request manifest head docker.io/rommapp/romm:latest: failed to request auth token (get): Get "[https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Arommapp%2Fromm%3Apull&service=registry.docker.io":](https://auth.docker.io/token?client_id=regclient%2Fregctl+%28v0.6.1%29&offline_token=true&scope=repository%3Arommapp%2Fromm%3Apull&service=registry.docker.io%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:40867->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2024-07-04 16:45:40.554351+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-22 18:26:29.473865+00:00 [SERVER] INFO: regctl image inspect response: 2024-07-21 15:12:00.052046+00:00 [SERVER] ERROR: Error running regctl command: Error running regctl command: time="2024-07-22T16:10:11-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=1.999995722 [SERVER] time="2024-07-22T16:10:28-04:00" level=warning msg="Sleeping for backoff" Host=docker.io Seconds=3.999992065 [SERVER] failed to request manifest head docker.io/hurlenko/filebrowser:latest: failed to request auth token (post): Post "[https://auth.docker.io/token":](https://auth.docker.io/token%22:) dial tcp: lookup auth.docker.io on 127.0.0.11:53: read udp 127.0.0.1:43747->127.0.0.11:53: i/o timeout [SERVER] INFO: regctl image inspect response: 2024-06-15 16:38:24.810132+00:00 [SERVER] INFO: 127.0.0.1:36004 - "GET /api/stacks HTTP/1.1" 500 [SERVER] ERROR: Exception in ASGI application [SERVER] Traceback (most recent call last): [SERVER] File "/usr/local/lib/python3.12/site-packages/uvicorn/protocols/http/httptools_impl.py", line 399, in run_asgi [SERVER] result = await app( # type: ignore[func-returns-value] [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/uvicorn/middleware/proxy_headers.py", line 70, in __call__ [SERVER] return await self.app(scope, receive, send) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/applications.py", line 1054, in __call__ [SERVER] await super().__call__(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/applications.py", line 123, in __call__ [SERVER] await self.middleware_stack(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 186, in __call__ [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/errors.py", line 164, in __call__ [SERVER] await self.app(scope, receive, _send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/cors.py", line 85, in __call__ [SERVER] await self.app(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/middleware/exceptions.py", line 65, in __call__ [SERVER] await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app [SERVER] await app(scope, receive, sender) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 756, in __call__ [SERVER] await self.middleware_stack(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 776, in app [SERVER] await route.handle(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 297, in handle [SERVER] await self.app(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 77, in app [SERVER] await wrap_app_handling_exceptions(app, request)(scope, receive, send) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app [SERVER] raise exc [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app [SERVER] await app(scope, receive, sender) [SERVER] File "/usr/local/lib/python3.12/site-packages/starlette/routing.py", line 72, in app [SERVER] response = await func(request) [SERVER] ^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 278, in app [SERVER] raw_response = await run_endpoint_function( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/usr/local/lib/python3.12/site-packages/fastapi/routing.py", line 191, in run_endpoint_function [SERVER] return await dependant.call(**values) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/settings/cache.py", line 231, in inner [SERVER] ret = await ensure_async_func(*args, **kwargs) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/settings/cache.py", line 136, in ensure_async_func [SERVER] return await func(*args, **kwargs) [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/routes/stacks.py", line 29, in list_compose_stacks [SERVER] return await docker_services.list_compose_stacks( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 167, in list_compose_stacks [SERVER] stacks = await asyncio.gather(*[ [SERVER] ^^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 159, in _task [SERVER] stack.services = await list_containers( [SERVER] ^^^^^^^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 68, in list_containers [SERVER] await asyncio.gather(*[ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 56, in _task [SERVER] res.image = await get_image( [SERVER] ^^^^^^^^^^^^^^^^ [SERVER] File "/app/docking-station-app/src/app/api/services/docker.py", line 147, in get_image [SERVER] raise KeyError(repository_or_tag) [SERVER] KeyError: 'docker.io/library/postgres:15' ```

ShanDestromp commented 4 weeks ago

Just a little update, DS has been the only "update monitor" I've had on my system for the last 40 hours with no change. Removing DS and re-enabling diun and I immediately begin getting notifications of updated containers; which I think rules out an API limit issue as well as a general network issue

LooLzzz commented 4 weeks ago

Moving all discussions regarding this to #7