containrrr / watchtower

A process for automating Docker container base image updates.
https://containrrr.dev/watchtower/
Apache License 2.0
18.28k stars 830 forks source link

Metrics not being updated #1710

Closed modem7 closed 1 year ago

modem7 commented 1 year ago

Describe the bug

Metrics don't seem to update.

Except:

# HELP watchtower_containers_failed Number of containers where update failed during the last scan
# TYPE watchtower_containers_failed gauge
watchtower_containers_failed 0
# HELP watchtower_containers_scanned Number of containers scanned for changes by watchtower during the last scan
# TYPE watchtower_containers_scanned gauge
watchtower_containers_scanned 0
# HELP watchtower_containers_updated Number of containers updated by watchtower during the last scan
# TYPE watchtower_containers_updated gauge
watchtower_containers_updated 0
# HELP watchtower_scans_skipped Number of skipped scans since watchtower started
# TYPE watchtower_scans_skipped counter
watchtower_scans_skipped 0
# HELP watchtower_scans_total Number of scans since the watchtower started
# TYPE watchtower_scans_total counter
watchtower_scans_total 0

Steps to reproduce

Compose:

  # WatchTower - Automatic Docker Container Updates and cleanup
  watchtower:
    image: containrrr/watchtower
    container_name: Watchtower
    hostname: Watchtower
    networks:
      isonet:
    ports:
      - 26525:8080
    labels:
      - autoheal=true
      ## Homepage
      - homepage.group=System
      - homepage.name=Watchtower
      - homepage.icon=https://containrrr.dev/watchtower/images/favicon.ico
      - homepage.widget.type=watchtower
      - homepage.widget.url=http://$SERVER_IP:26525
      - homepage.widget.key=$WATCHTOWER_API_TOKEN
    environment:
      DOCKER_HOST: unix:///var/run/docker.sock
      TZ: $TZ
      WATCHTOWER_CLEANUP: true
      WATCHTOWER_REMOVE_VOLUMES: false
      WATCHTOWER_INCLUDE_STOPPED: true
      WATCHTOWER_NO_STARTUP_MESSAGE: true
      WATCHTOWER_WARN_ON_HEAD_FAILURE: never
      WATCHTOWER_TIMEOUT: 30s
      WATCHTOWER_SCHEDULE: "0 0 6 * * *" # Everyday at 06:00
      WATCHTOWER_HTTP_API_TOKEN: $WATCHTOWER_API_TOKEN
      WATCHTOWER_HTTP_API_METRICS: true
      WATCHTOWER_NOTIFICATIONS: shoutrrr
      WATCHTOWER_NOTIFICATION_URL: "telegram://$TGRAM_BOT_TOKEN@telegram?channels=$TGRAM_CHAT_ID"
      WATCHTOWER_NOTIFICATIONS_LEVEL: info
      WATCHTOWER_NOTIFICATION_TEMPLATE: |
        {{- if .Report -}}
          {{- with .Report -}}
        {{len .Scanned}} Scanned, {{len .Updated}} Updated, {{len .Failed}} Failed
              {{- range .Updated}}
        - {{.Name}} ({{.ImageName}}): {{.CurrentImageID.ShortID}} updated to {{.LatestImageID.ShortID}}
              {{- end -}}
              {{- range .Fresh}}
        - {{.Name}} ({{.ImageName}}): {{.State}}
            {{- end -}}
            {{- range .Skipped}}
        - {{.Name}} ({{.ImageName}}): {{.State}}: {{.Error}}
            {{- end -}}
            {{- range .Failed}}
        - {{.Name}} ({{.ImageName}}): {{.State}}: {{.Error}}
            {{- end -}}
          {{- end -}}
        {{- else -}}
          {{range .Entries -}}{{.Message}}{{"\n"}}{{- end -}}
        {{- end -}}
    volumes:
     - /var/run/docker.sock:/var/run/docker.sock
    logging:
      driver: "local"
      options:
        max-size: 10m
        max-file: "3"
    restart: always
    mem_limit: 250m
    mem_reservation: 60m

Expected behavior

For metrics to show scanned/updated/failed

Screenshots

No response

Environment

Your logs

Logs:

time="2023-07-27T06:02:31+01:00" level=info msg="Checking all containers (except explicitly disabled with label)" notify=no
time="2023-07-27T06:02:31+01:00" level=info msg="Scheduling first run: 2023-07-28 06:00:00 +0100 BST" notify=no
time="2023-07-27T06:02:31+01:00" level=info msg="Note that the first check will be performed in 23 hours, 57 minutes, 28 seconds" notify=no
time="2023-07-28T06:00:04+01:00" level=info msg="Found new amir20/dozzle:latest image (6226fe8d36e4)"
time="2023-07-28T06:00:52+01:00" level=info msg="Stopping /Dozzle (79141a8b6feb) with SIGTERM"
time="2023-07-28T06:00:53+01:00" level=info msg="Creating /Dozzle"
time="2023-07-28T06:00:54+01:00" level=info msg="Removing image 97d2337cb22b"
time="2023-07-28T06:00:54+01:00" level=info msg="Session done" Failed=0 Scanned=50 Updated=1 notify=no
time="2023-07-28T06:00:54+01:00" level=fatal msg="Notification template error" error="template: :1:7: executing \"\" at <.Report>: can't evaluate field Report in type []*logrus.Entry" notify=no
time="2023-07-28T06:00:56+01:00" level=info msg="Watchtower 1.5.3" notify=no
time="2023-07-28T06:00:56+01:00" level=info msg="Using notifications: telegram" notify=no
time="2023-07-28T06:00:56+01:00" level=info msg="Checking all containers (except explicitly disabled with label)" notify=no
time="2023-07-28T06:00:56+01:00" level=info msg="Scheduling first run: 2023-07-29 06:00:00 +0100 BST" notify=no
time="2023-07-28T06:00:56+01:00" level=info msg="Note that the first check will be performed in 23 hours, 59 minutes, 3 seconds" notify=no
time="2023-07-28T12:13:46+01:00" level=info msg="Waiting for running update to be finished..."
time="2023-07-28T12:20:46+01:00" level=info msg="Watchtower 1.5.3" notify=no
time="2023-07-28T12:20:46+01:00" level=info msg="Using notifications: telegram" notify=no
time="2023-07-28T12:20:46+01:00" level=info msg="Checking all containers (except explicitly disabled with label)" notify=no
time="2023-07-28T12:20:46+01:00" level=info msg="Scheduling first run: 2023-07-29 06:00:00 +0100 BST" notify=no
time="2023-07-28T12:20:46+01:00" level=info msg="Note that the first check will be performed in 17 hours, 39 minutes, 13 seconds" notify=no
time="2023-07-29T06:00:37+01:00" level=info msg="Found new linuxserver/plex-meta-manager:latest image (b883fdb42ada)"
time="2023-07-29T06:00:50+01:00" level=info msg="Found new linuxserver/sonarr:latest image (146be78b446b)"
time="2023-07-29T06:01:06+01:00" level=info msg="Stopping /Sonarr (49032b6c55e7) with SIGTERM"
time="2023-07-29T06:01:11+01:00" level=info msg="Stopping /PMM (ac34a765d8e3) with SIGTERM"
time="2023-07-29T06:01:17+01:00" level=info msg="Creating /PMM"
time="2023-07-29T06:01:17+01:00" level=info msg="Creating /Sonarr"
time="2023-07-29T06:01:18+01:00" level=info msg="Removing image 6c4c5b9245be"
time="2023-07-29T06:01:18+01:00" level=info msg="Removing image 1bfa5956bc5c"
time="2023-07-29T06:01:19+01:00" level=info msg="Session done" Failed=0 Scanned=51 Updated=2 notify=no
time="2023-07-29T06:01:19+01:00" level=fatal msg="Notification template error" error="template: :1:7: executing \"\" at <.Report>: can't evaluate field Report in type []*logrus.Entry" notify=no
time="2023-07-29T06:01:21+01:00" level=info msg="Watchtower 1.5.3" notify=no
time="2023-07-29T06:01:21+01:00" level=info msg="Using notifications: telegram" notify=no
time="2023-07-29T06:01:21+01:00" level=info msg="Checking all containers (except explicitly disabled with label)" notify=no
time="2023-07-29T06:01:21+01:00" level=info msg="Scheduling first run: 2023-07-30 06:00:00 +0100 BST" notify=no
time="2023-07-29T06:01:21+01:00" level=info msg="Note that the first check will be performed in 23 hours, 58 minutes, 38 seconds" notify=no
time="2023-07-30T06:00:41+01:00" level=info msg="Found new linuxserver/xbackbone:latest image (79331f005c72)"
time="2023-07-30T06:00:57+01:00" level=info msg="Stopping /XBackbone (af8db7b76143) with SIGTERM"
time="2023-07-30T06:01:03+01:00" level=info msg="Creating /XBackbone"
time="2023-07-30T06:01:04+01:00" level=info msg="Removing image 4c16ccd4c3fe"
time="2023-07-30T06:01:04+01:00" level=info msg="Session done" Failed=0 Scanned=50 Updated=1 notify=no
time="2023-07-30T06:01:04+01:00" level=fatal msg="Notification template error" error="template: :1:7: executing \"\" at <.Report>: can't evaluate field Report in type []*logrus.Entry" notify=no
time="2023-07-30T06:01:07+01:00" level=info msg="Watchtower 1.5.3" notify=no
time="2023-07-30T06:01:07+01:00" level=info msg="Using notifications: telegram" notify=no
time="2023-07-30T06:01:07+01:00" level=info msg="Checking all containers (except explicitly disabled with label)" notify=no
time="2023-07-30T06:01:07+01:00" level=info msg="Scheduling first run: 2023-07-31 06:00:00 +0100 BST" notify=no
time="2023-07-30T06:01:07+01:00" level=info msg="Note that the first check will be performed in 23 hours, 58 minutes, 52 seconds" notify=no
time="2023-07-31T06:00:40+01:00" level=info msg="Found new linuxserver/radarr:latest image (f3ce1a53ea02)"
time="2023-07-31T06:00:51+01:00" level=info msg="Found new ghcr.io/benphelps/homepage:latest image (38703d38561e)"
time="2023-07-31T06:01:04+01:00" level=info msg="Stopping /Homepage (7936b88da645) with SIGTERM"
time="2023-07-31T06:01:35+01:00" level=info msg="Stopping /Radarr (e6ea496a3c7f) with SIGTERM"
time="2023-07-31T06:01:40+01:00" level=info msg="Creating /Radarr"
time="2023-07-31T06:01:41+01:00" level=info msg="Creating /Homepage"
time="2023-07-31T06:01:41+01:00" level=info msg="Removing image cf58b5ffddb8"
time="2023-07-31T06:01:41+01:00" level=info msg="Removing image 1dafb1b92e1b"
time="2023-07-31T06:01:42+01:00" level=info msg="Session done" Failed=0 Scanned=50 Updated=2 notify=no
time="2023-07-31T06:01:42+01:00" level=fatal msg="Notification template error" error="template: :1:7: executing \"\" at <.Report>: can't evaluate field Report in type []*logrus.Entry" notify=no
time="2023-07-31T06:01:44+01:00" level=info msg="Watchtower 1.5.3" notify=no
time="2023-07-31T06:01:44+01:00" level=info msg="Using notifications: telegram" notify=no
time="2023-07-31T06:01:44+01:00" level=info msg="Checking all containers (except explicitly disabled with label)" notify=no
time="2023-07-31T06:01:44+01:00" level=info msg="Scheduling first run: 2023-08-01 06:00:00 +0100 BST" notify=no
time="2023-07-31T06:01:44+01:00" level=info msg="Note that the first check will be performed in 23 hours, 58 minutes, 15 seconds" notify=no


### Additional context

_No response_
modem7 commented 1 year ago

I found the culprit at least - seems that the template is having some issues, and as such, it errors out.

I got the template from https://containrrr.dev/watchtower/notifications/#report_templates

debug logs:

time="2023-07-31T23:54:42+01:00" level=debug msg="Sleeping for a second to ensure the docker api client has been properly initialized."
time="2023-07-31T23:54:43+01:00" level=debug msg="Making sure everything is sane before starting"
time="2023-07-31T23:54:43+01:00" level=debug msg="Retrieving running, stopped and exited containers"
time="2023-07-31T23:54:43+01:00" level=debug msg="There are no additional watchtower containers"
time="2023-07-31T23:54:43+01:00" level=info msg="Watchtower 1.5.3" notify=no
time="2023-07-31T23:54:43+01:00" level=info msg="Using notifications: telegram" notify=no
time="2023-07-31T23:54:43+01:00" level=info msg="Checking all containers (except explicitly disabled with label)" notify=no
time="2023-07-31T23:54:43+01:00" level=info msg="Scheduling first run: 2023-07-31 23:55:00 +0100 BST" notify=no
time="2023-07-31T23:54:43+01:00" level=info msg="Note that the first check will be performed in 16 seconds" notify=no
time="2023-07-31T23:55:00+01:00" level=debug msg="Checking containers for updated images"
time="2023-07-31T23:55:00+01:00" level=debug msg="Retrieving running, stopped and exited containers"
time="2023-07-31T23:55:00+01:00" level=debug msg="Trying to load authentication credentials." container=/Watchtower image="containrrr/watchtower:latest"
time="2023-07-31T23:55:00+01:00" level=debug msg="No credentials for containrrr found" config_file=/config.json
time="2023-07-31T23:55:00+01:00" level=debug msg="Got image name: containrrr/watchtower:latest"
time="2023-07-31T23:55:00+01:00" level=debug msg="Checking if pull is needed" container=/Watchtower image="containrrr/watchtower:latest"
time="2023-07-31T23:55:00+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:00+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:00+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:00+01:00" level=debug msg="Setting scope for auth token" image=containrrr/watchtower scope="repository:containrrr/watchtower:pull"
time="2023-07-31T23:55:00+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:00+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=containrrr/watchtower normalized="docker.io/containrrr/watchtower:latest" tag=latest
time="2023-07-31T23:55:00+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/containrrr/watchtower/manifests/latest"
time="2023-07-31T23:55:01+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:0ca7a88fd0748aa6f32e50b67eb11148cdb989fc595264c2778c85297a2c1abe"
time="2023-07-31T23:55:01+01:00" level=debug msg=Comparing local="sha256:0ca7a88fd0748aa6f32e50b67eb11148cdb989fc595264c2778c85297a2c1abe" remote="sha256:0ca7a88fd0748aa6f32e50b67eb11148cdb989fc595264c2778c85297a2c1abe"
time="2023-07-31T23:55:01+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:01+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:01+01:00" level=debug msg="No new images found for /Watchtower"
time="2023-07-31T23:55:01+01:00" level=debug msg="Trying to load authentication credentials." container=/Dozzle image="amir20/dozzle:latest"
time="2023-07-31T23:55:01+01:00" level=debug msg="No credentials for amir20 found" config_file=/config.json
time="2023-07-31T23:55:01+01:00" level=debug msg="Got image name: amir20/dozzle:latest"
time="2023-07-31T23:55:01+01:00" level=debug msg="Checking if pull is needed" container=/Dozzle image="amir20/dozzle:latest"
time="2023-07-31T23:55:01+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:01+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:01+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:01+01:00" level=debug msg="Setting scope for auth token" image=amir20/dozzle scope="repository:amir20/dozzle:pull"
time="2023-07-31T23:55:01+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:01+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=amir20/dozzle normalized="docker.io/amir20/dozzle:latest" tag=latest
time="2023-07-31T23:55:01+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/amir20/dozzle/manifests/latest"
time="2023-07-31T23:55:01+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:3ee5eeb0f0ac4f6b3d1bd4bf627a7ea22038fca080f29d0057a29f5f93941d1b"
time="2023-07-31T23:55:01+01:00" level=debug msg=Comparing local="sha256:3ee5eeb0f0ac4f6b3d1bd4bf627a7ea22038fca080f29d0057a29f5f93941d1b" remote="sha256:3ee5eeb0f0ac4f6b3d1bd4bf627a7ea22038fca080f29d0057a29f5f93941d1b"
time="2023-07-31T23:55:01+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:01+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:01+01:00" level=debug msg="No new images found for /Dozzle"
time="2023-07-31T23:55:01+01:00" level=debug msg="Trying to load authentication credentials." container=/Mealie image="hkotel/mealie:omni-nightly"
time="2023-07-31T23:55:01+01:00" level=debug msg="No credentials for hkotel found" config_file=/config.json
time="2023-07-31T23:55:01+01:00" level=debug msg="Got image name: hkotel/mealie:omni-nightly"
time="2023-07-31T23:55:01+01:00" level=debug msg="Checking if pull is needed" container=/Mealie image="hkotel/mealie:omni-nightly"
time="2023-07-31T23:55:01+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:02+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:02+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:02+01:00" level=debug msg="Setting scope for auth token" image=hkotel/mealie scope="repository:hkotel/mealie:pull"
time="2023-07-31T23:55:02+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:02+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=hkotel/mealie normalized="docker.io/hkotel/mealie:omni-nightly" tag=omni-nightly
time="2023-07-31T23:55:02+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/hkotel/mealie/manifests/omni-nightly"
time="2023-07-31T23:55:02+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:c9f20c1a89c17d9265e1fabc663466c542a153ae01ec010e1e24fdad89d88b5d"
time="2023-07-31T23:55:02+01:00" level=debug msg=Comparing local="sha256:c9f20c1a89c17d9265e1fabc663466c542a153ae01ec010e1e24fdad89d88b5d" remote="sha256:c9f20c1a89c17d9265e1fabc663466c542a153ae01ec010e1e24fdad89d88b5d"
time="2023-07-31T23:55:02+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:02+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:02+01:00" level=debug msg="No new images found for /Mealie"
time="2023-07-31T23:55:02+01:00" level=debug msg="Trying to load authentication credentials." container=/Homepage image="ghcr.io/benphelps/homepage:latest"
time="2023-07-31T23:55:02+01:00" level=debug msg="No credentials for ghcr.io found" config_file=/config.json
time="2023-07-31T23:55:02+01:00" level=debug msg="Got image name: ghcr.io/benphelps/homepage:latest"
time="2023-07-31T23:55:02+01:00" level=debug msg="Checking if pull is needed" container=/Homepage image="ghcr.io/benphelps/homepage:latest"
time="2023-07-31T23:55:02+01:00" level=debug msg="Building challenge URL" URL="https://ghcr.io/v2/"
time="2023-07-31T23:55:03+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:user/image:pull\"" status="401 Unauthorized"
time="2023-07-31T23:55:03+01:00" level=debug msg="Checking challenge header content" realm="https://ghcr.io/token" service=ghcr.io
time="2023-07-31T23:55:03+01:00" level=debug msg="Setting scope for auth token" image=ghcr.io/benphelps/homepage scope="repository:ghcr.io/benphelps/homepage:pull"
time="2023-07-31T23:55:03+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:03+01:00" level=debug msg="Parsing image ref" host=ghcr.io image=benphelps/homepage normalized="ghcr.io/benphelps/homepage:latest" tag=latest
time="2023-07-31T23:55:03+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://ghcr.io/v2/benphelps/homepage/manifests/latest"
time="2023-07-31T23:55:03+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:d6a98723a056b26dbac5b01ce36f187a00ffbf5f4fb87dc6ba9e05ae796e8e66"
time="2023-07-31T23:55:03+01:00" level=debug msg=Comparing local="sha256:d6a98723a056b26dbac5b01ce36f187a00ffbf5f4fb87dc6ba9e05ae796e8e66" remote="sha256:d6a98723a056b26dbac5b01ce36f187a00ffbf5f4fb87dc6ba9e05ae796e8e66"
time="2023-07-31T23:55:03+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:03+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:03+01:00" level=debug msg="No new images found for /Homepage"
time="2023-07-31T23:55:03+01:00" level=debug msg="Trying to load authentication credentials." container=/Radarr image="linuxserver/radarr:latest"
time="2023-07-31T23:55:03+01:00" level=debug msg="No credentials for linuxserver found" config_file=/config.json
time="2023-07-31T23:55:03+01:00" level=debug msg="Got image name: linuxserver/radarr:latest"
time="2023-07-31T23:55:03+01:00" level=debug msg="Checking if pull is needed" container=/Radarr image="linuxserver/radarr:latest"
time="2023-07-31T23:55:03+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:03+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:03+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:03+01:00" level=debug msg="Setting scope for auth token" image=linuxserver/radarr scope="repository:linuxserver/radarr:pull"
time="2023-07-31T23:55:03+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:03+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=linuxserver/radarr normalized="docker.io/linuxserver/radarr:latest" tag=latest
time="2023-07-31T23:55:03+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/linuxserver/radarr/manifests/latest"
time="2023-07-31T23:55:04+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:db0f24f8a795d2b8cb871f02152716fed0f709889036dc4e599a247b07831a5f"
time="2023-07-31T23:55:04+01:00" level=debug msg=Comparing local="sha256:db0f24f8a795d2b8cb871f02152716fed0f709889036dc4e599a247b07831a5f" remote="sha256:db0f24f8a795d2b8cb871f02152716fed0f709889036dc4e599a247b07831a5f"
time="2023-07-31T23:55:04+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:04+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:04+01:00" level=debug msg="No new images found for /Radarr"
time="2023-07-31T23:55:04+01:00" level=debug msg="Trying to load authentication credentials." container=/XBackbone image="linuxserver/xbackbone:latest"
time="2023-07-31T23:55:04+01:00" level=debug msg="No credentials for linuxserver found" config_file=/config.json
time="2023-07-31T23:55:04+01:00" level=debug msg="Got image name: linuxserver/xbackbone:latest"
time="2023-07-31T23:55:04+01:00" level=debug msg="Checking if pull is needed" container=/XBackbone image="linuxserver/xbackbone:latest"
time="2023-07-31T23:55:04+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:04+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:04+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:04+01:00" level=debug msg="Setting scope for auth token" image=linuxserver/xbackbone scope="repository:linuxserver/xbackbone:pull"
time="2023-07-31T23:55:04+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:04+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=linuxserver/xbackbone normalized="docker.io/linuxserver/xbackbone:latest" tag=latest
time="2023-07-31T23:55:04+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/linuxserver/xbackbone/manifests/latest"
time="2023-07-31T23:55:05+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:6d473f781bbbb70b95e0279887447938839dce481f379eb84504b70d59c4c947"
time="2023-07-31T23:55:05+01:00" level=debug msg=Comparing local="sha256:6d473f781bbbb70b95e0279887447938839dce481f379eb84504b70d59c4c947" remote="sha256:6d473f781bbbb70b95e0279887447938839dce481f379eb84504b70d59c4c947"
time="2023-07-31T23:55:05+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:05+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:05+01:00" level=debug msg="No new images found for /XBackbone"
time="2023-07-31T23:55:05+01:00" level=debug msg="Trying to load authentication credentials." container=/Tdarr image="ghcr.io/haveagitgat/tdarr:latest"
time="2023-07-31T23:55:05+01:00" level=debug msg="No credentials for ghcr.io found" config_file=/config.json
time="2023-07-31T23:55:05+01:00" level=debug msg="Got image name: ghcr.io/haveagitgat/tdarr:latest"
time="2023-07-31T23:55:05+01:00" level=debug msg="Checking if pull is needed" container=/Tdarr image="ghcr.io/haveagitgat/tdarr:latest"
time="2023-07-31T23:55:05+01:00" level=debug msg="Building challenge URL" URL="https://ghcr.io/v2/"
time="2023-07-31T23:55:05+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:user/image:pull\"" status="401 Unauthorized"
time="2023-07-31T23:55:05+01:00" level=debug msg="Checking challenge header content" realm="https://ghcr.io/token" service=ghcr.io
time="2023-07-31T23:55:05+01:00" level=debug msg="Setting scope for auth token" image=ghcr.io/haveagitgat/tdarr scope="repository:ghcr.io/haveagitgat/tdarr:pull"
time="2023-07-31T23:55:05+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:05+01:00" level=debug msg="Parsing image ref" host=ghcr.io image=haveagitgat/tdarr normalized="ghcr.io/haveagitgat/tdarr:latest" tag=latest
time="2023-07-31T23:55:05+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://ghcr.io/v2/haveagitgat/tdarr/manifests/latest"
time="2023-07-31T23:55:05+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:84703d2351353f27d23b833049cf26b67c4778227a2e9ac88725dd10948f0468"
time="2023-07-31T23:55:05+01:00" level=debug msg=Comparing local="sha256:84703d2351353f27d23b833049cf26b67c4778227a2e9ac88725dd10948f0468" remote="sha256:84703d2351353f27d23b833049cf26b67c4778227a2e9ac88725dd10948f0468"
time="2023-07-31T23:55:05+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:05+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:05+01:00" level=debug msg="No new images found for /Tdarr"
time="2023-07-31T23:55:05+01:00" level=debug msg="Trying to load authentication credentials." container=/Github-Desktop image="linuxserver/github-desktop:latest"
time="2023-07-31T23:55:05+01:00" level=debug msg="No credentials for linuxserver found" config_file=/config.json
time="2023-07-31T23:55:05+01:00" level=debug msg="Got image name: linuxserver/github-desktop:latest"
time="2023-07-31T23:55:05+01:00" level=debug msg="Checking if pull is needed" container=/Github-Desktop image="linuxserver/github-desktop:latest"
time="2023-07-31T23:55:05+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:05+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:05+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:05+01:00" level=debug msg="Setting scope for auth token" image=linuxserver/github-desktop scope="repository:linuxserver/github-desktop:pull"
time="2023-07-31T23:55:05+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:06+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=linuxserver/github-desktop normalized="docker.io/linuxserver/github-desktop:latest" tag=latest
time="2023-07-31T23:55:06+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/linuxserver/github-desktop/manifests/latest"
time="2023-07-31T23:55:06+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:a2b85883762411951a2dada605321fc65696c30226edf16873210606ed87ba74"
time="2023-07-31T23:55:06+01:00" level=debug msg=Comparing local="sha256:a2b85883762411951a2dada605321fc65696c30226edf16873210606ed87ba74" remote="sha256:a2b85883762411951a2dada605321fc65696c30226edf16873210606ed87ba74"
time="2023-07-31T23:55:06+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:06+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:06+01:00" level=debug msg="No new images found for /Github-Desktop"
time="2023-07-31T23:55:06+01:00" level=debug msg="Trying to load authentication credentials." container=/Bitwarden-Backup image="bruceforce/vaultwarden-backup:latest"
time="2023-07-31T23:55:06+01:00" level=debug msg="No credentials for bruceforce found" config_file=/config.json
time="2023-07-31T23:55:06+01:00" level=debug msg="Got image name: bruceforce/vaultwarden-backup:latest"
time="2023-07-31T23:55:06+01:00" level=debug msg="Checking if pull is needed" container=/Bitwarden-Backup image="bruceforce/vaultwarden-backup:latest"
time="2023-07-31T23:55:06+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:06+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:06+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:06+01:00" level=debug msg="Setting scope for auth token" image=bruceforce/vaultwarden-backup scope="repository:bruceforce/vaultwarden-backup:pull"
time="2023-07-31T23:55:06+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:06+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=bruceforce/vaultwarden-backup normalized="docker.io/bruceforce/vaultwarden-backup:latest" tag=latest
time="2023-07-31T23:55:06+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/bruceforce/vaultwarden-backup/manifests/latest"
time="2023-07-31T23:55:07+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:1f3fb7c4ab7dc7d926c828ea05e4b070287775ada38591ad2f5eb8054f71b51c"
time="2023-07-31T23:55:07+01:00" level=debug msg=Comparing local="sha256:1f3fb7c4ab7dc7d926c828ea05e4b070287775ada38591ad2f5eb8054f71b51c" remote="sha256:1f3fb7c4ab7dc7d926c828ea05e4b070287775ada38591ad2f5eb8054f71b51c"
time="2023-07-31T23:55:07+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:07+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:07+01:00" level=debug msg="No new images found for /Bitwarden-Backup"
time="2023-07-31T23:55:07+01:00" level=debug msg="Trying to load authentication credentials." container=/Linkding image="sissbruecker/linkding:latest"
time="2023-07-31T23:55:07+01:00" level=debug msg="No credentials for sissbruecker found" config_file=/config.json
time="2023-07-31T23:55:07+01:00" level=debug msg="Got image name: sissbruecker/linkding:latest"
time="2023-07-31T23:55:07+01:00" level=debug msg="Checking if pull is needed" container=/Linkding image="sissbruecker/linkding:latest"
time="2023-07-31T23:55:07+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:07+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:07+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:07+01:00" level=debug msg="Setting scope for auth token" image=sissbruecker/linkding scope="repository:sissbruecker/linkding:pull"
time="2023-07-31T23:55:07+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:07+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=sissbruecker/linkding normalized="docker.io/sissbruecker/linkding:latest" tag=latest
time="2023-07-31T23:55:07+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/sissbruecker/linkding/manifests/latest"
time="2023-07-31T23:55:08+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:f345732f313fb2c1c3ece4a1025a2846c972f7dd67db0cb2fdf9681c75f10a95"
time="2023-07-31T23:55:08+01:00" level=debug msg=Comparing local="sha256:f345732f313fb2c1c3ece4a1025a2846c972f7dd67db0cb2fdf9681c75f10a95" remote="sha256:f345732f313fb2c1c3ece4a1025a2846c972f7dd67db0cb2fdf9681c75f10a95"
time="2023-07-31T23:55:08+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:08+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:08+01:00" level=debug msg="No new images found for /Linkding"
time="2023-07-31T23:55:08+01:00" level=debug msg="Trying to load authentication credentials." container=/Sonarr image="linuxserver/sonarr:latest"
time="2023-07-31T23:55:08+01:00" level=debug msg="No credentials for linuxserver found" config_file=/config.json
time="2023-07-31T23:55:08+01:00" level=debug msg="Got image name: linuxserver/sonarr:latest"
time="2023-07-31T23:55:08+01:00" level=debug msg="Checking if pull is needed" container=/Sonarr image="linuxserver/sonarr:latest"
time="2023-07-31T23:55:08+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:08+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:08+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:08+01:00" level=debug msg="Setting scope for auth token" image=linuxserver/sonarr scope="repository:linuxserver/sonarr:pull"
time="2023-07-31T23:55:08+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:08+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=linuxserver/sonarr normalized="docker.io/linuxserver/sonarr:latest" tag=latest
time="2023-07-31T23:55:08+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/linuxserver/sonarr/manifests/latest"
time="2023-07-31T23:55:08+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:6caa76b2e0a2bd56132f957b086cb7a57e1b03ee70bb5cfd61b373319f2c393c"
time="2023-07-31T23:55:08+01:00" level=debug msg=Comparing local="sha256:6caa76b2e0a2bd56132f957b086cb7a57e1b03ee70bb5cfd61b373319f2c393c" remote="sha256:6caa76b2e0a2bd56132f957b086cb7a57e1b03ee70bb5cfd61b373319f2c393c"
time="2023-07-31T23:55:08+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:08+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:08+01:00" level=debug msg="No new images found for /Sonarr"
time="2023-07-31T23:55:08+01:00" level=debug msg="Trying to load authentication credentials." container=/PMM image="linuxserver/plex-meta-manager:latest"
time="2023-07-31T23:55:08+01:00" level=debug msg="No credentials for linuxserver found" config_file=/config.json
time="2023-07-31T23:55:08+01:00" level=debug msg="Got image name: linuxserver/plex-meta-manager:latest"
time="2023-07-31T23:55:08+01:00" level=debug msg="Checking if pull is needed" container=/PMM image="linuxserver/plex-meta-manager:latest"
time="2023-07-31T23:55:08+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:09+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:09+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:09+01:00" level=debug msg="Setting scope for auth token" image=linuxserver/plex-meta-manager scope="repository:linuxserver/plex-meta-manager:pull"
time="2023-07-31T23:55:09+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:09+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=linuxserver/plex-meta-manager normalized="docker.io/linuxserver/plex-meta-manager:latest" tag=latest
time="2023-07-31T23:55:09+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/linuxserver/plex-meta-manager/manifests/latest"
time="2023-07-31T23:55:09+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:3d74f7d285f321763a35211b16ed50ae075a716ab2bf1f1246ff2dac24585b17"
time="2023-07-31T23:55:09+01:00" level=debug msg=Comparing local="sha256:3d74f7d285f321763a35211b16ed50ae075a716ab2bf1f1246ff2dac24585b17" remote="sha256:3d74f7d285f321763a35211b16ed50ae075a716ab2bf1f1246ff2dac24585b17"
time="2023-07-31T23:55:09+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:09+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:09+01:00" level=debug msg="No new images found for /PMM"
time="2023-07-31T23:55:09+01:00" level=debug msg="Trying to load authentication credentials." container=/Overseer image="sctx/overseerr:latest"
time="2023-07-31T23:55:09+01:00" level=debug msg="No credentials for sctx found" config_file=/config.json
time="2023-07-31T23:55:09+01:00" level=debug msg="Got image name: sctx/overseerr:latest"
time="2023-07-31T23:55:09+01:00" level=debug msg="Checking if pull is needed" container=/Overseer image="sctx/overseerr:latest"
time="2023-07-31T23:55:09+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:10+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:10+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:10+01:00" level=debug msg="Setting scope for auth token" image=sctx/overseerr scope="repository:sctx/overseerr:pull"
time="2023-07-31T23:55:10+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:10+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=sctx/overseerr normalized="docker.io/sctx/overseerr:latest" tag=latest
time="2023-07-31T23:55:10+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/sctx/overseerr/manifests/latest"
time="2023-07-31T23:55:10+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:714ea6db2bc007a2262d112bef7eec74972eb33d9c72bddb9cbd98b8742de950"
time="2023-07-31T23:55:10+01:00" level=debug msg=Comparing local="sha256:714ea6db2bc007a2262d112bef7eec74972eb33d9c72bddb9cbd98b8742de950" remote="sha256:714ea6db2bc007a2262d112bef7eec74972eb33d9c72bddb9cbd98b8742de950"
time="2023-07-31T23:55:10+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:10+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:10+01:00" level=debug msg="No new images found for /Overseer"
time="2023-07-31T23:55:10+01:00" level=debug msg="Trying to load authentication credentials." container=/CF-Companion image="tiredofit/traefik-cloudflare-companion:latest"
time="2023-07-31T23:55:10+01:00" level=debug msg="No credentials for tiredofit found" config_file=/config.json
time="2023-07-31T23:55:10+01:00" level=debug msg="Got image name: tiredofit/traefik-cloudflare-companion:latest"
time="2023-07-31T23:55:10+01:00" level=debug msg="Checking if pull is needed" container=/CF-Companion image="tiredofit/traefik-cloudflare-companion:latest"
time="2023-07-31T23:55:10+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:10+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:10+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:10+01:00" level=debug msg="Setting scope for auth token" image=tiredofit/traefik-cloudflare-companion scope="repository:tiredofit/traefik-cloudflare-companion:pull"
time="2023-07-31T23:55:10+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:10+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=tiredofit/traefik-cloudflare-companion normalized="docker.io/tiredofit/traefik-cloudflare-companion:latest" tag=latest
time="2023-07-31T23:55:10+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/tiredofit/traefik-cloudflare-companion/manifests/latest"
time="2023-07-31T23:55:11+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:e7fe07fd086790e2c60f869377425294bb39de818ae0d0796e2c1ca14a4de30e"
time="2023-07-31T23:55:11+01:00" level=debug msg=Comparing local="sha256:e7fe07fd086790e2c60f869377425294bb39de818ae0d0796e2c1ca14a4de30e" remote="sha256:e7fe07fd086790e2c60f869377425294bb39de818ae0d0796e2c1ca14a4de30e"
time="2023-07-31T23:55:11+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:11+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:11+01:00" level=debug msg="No new images found for /CF-Companion"
time="2023-07-31T23:55:11+01:00" level=debug msg="Trying to load authentication credentials." container=/Oauth image="thomseddon/traefik-forward-auth:latest"
time="2023-07-31T23:55:11+01:00" level=debug msg="No credentials for thomseddon found" config_file=/config.json
time="2023-07-31T23:55:11+01:00" level=debug msg="Got image name: thomseddon/traefik-forward-auth:latest"
time="2023-07-31T23:55:11+01:00" level=debug msg="Checking if pull is needed" container=/Oauth image="thomseddon/traefik-forward-auth:latest"
time="2023-07-31T23:55:11+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:11+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:11+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:11+01:00" level=debug msg="Setting scope for auth token" image=thomseddon/traefik-forward-auth scope="repository:thomseddon/traefik-forward-auth:pull"
time="2023-07-31T23:55:11+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:11+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=thomseddon/traefik-forward-auth normalized="docker.io/thomseddon/traefik-forward-auth:latest" tag=latest
time="2023-07-31T23:55:11+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/thomseddon/traefik-forward-auth/manifests/latest"
time="2023-07-31T23:55:12+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:b364aa6a4117569163eff793999901f9f5a0c4f7f2da18b4ecbcd140d7b6107b"
time="2023-07-31T23:55:12+01:00" level=debug msg=Comparing local="sha256:b364aa6a4117569163eff793999901f9f5a0c4f7f2da18b4ecbcd140d7b6107b" remote="sha256:b364aa6a4117569163eff793999901f9f5a0c4f7f2da18b4ecbcd140d7b6107b"
time="2023-07-31T23:55:12+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:12+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:12+01:00" level=debug msg="No new images found for /Oauth"
time="2023-07-31T23:55:12+01:00" level=debug msg="Trying to load authentication credentials." container=/Hydra2 image="linuxserver/nzbhydra2:latest"
time="2023-07-31T23:55:12+01:00" level=debug msg="No credentials for linuxserver found" config_file=/config.json
time="2023-07-31T23:55:12+01:00" level=debug msg="Got image name: linuxserver/nzbhydra2:latest"
time="2023-07-31T23:55:12+01:00" level=debug msg="Checking if pull is needed" container=/Hydra2 image="linuxserver/nzbhydra2:latest"
time="2023-07-31T23:55:12+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:12+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:12+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:12+01:00" level=debug msg="Setting scope for auth token" image=linuxserver/nzbhydra2 scope="repository:linuxserver/nzbhydra2:pull"
time="2023-07-31T23:55:12+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:12+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=linuxserver/nzbhydra2 normalized="docker.io/linuxserver/nzbhydra2:latest" tag=latest
time="2023-07-31T23:55:12+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/linuxserver/nzbhydra2/manifests/latest"
time="2023-07-31T23:55:13+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:9099b5b1ce8f5193895a6f8575069f8eafea43436bd16790e418bf6d2fcfed91"
time="2023-07-31T23:55:13+01:00" level=debug msg=Comparing local="sha256:9099b5b1ce8f5193895a6f8575069f8eafea43436bd16790e418bf6d2fcfed91" remote="sha256:9099b5b1ce8f5193895a6f8575069f8eafea43436bd16790e418bf6d2fcfed91"
time="2023-07-31T23:55:13+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:13+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:13+01:00" level=debug msg="No new images found for /Hydra2"
time="2023-07-31T23:55:13+01:00" level=debug msg="Trying to load authentication credentials." container=/Sabnzbd image="linuxserver/sabnzbd:latest"
time="2023-07-31T23:55:13+01:00" level=debug msg="No credentials for linuxserver found" config_file=/config.json
time="2023-07-31T23:55:13+01:00" level=debug msg="Got image name: linuxserver/sabnzbd:latest"
time="2023-07-31T23:55:13+01:00" level=debug msg="Checking if pull is needed" container=/Sabnzbd image="linuxserver/sabnzbd:latest"
time="2023-07-31T23:55:13+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:13+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:13+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:13+01:00" level=debug msg="Setting scope for auth token" image=linuxserver/sabnzbd scope="repository:linuxserver/sabnzbd:pull"
time="2023-07-31T23:55:13+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:13+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=linuxserver/sabnzbd normalized="docker.io/linuxserver/sabnzbd:latest" tag=latest
time="2023-07-31T23:55:13+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/linuxserver/sabnzbd/manifests/latest"
time="2023-07-31T23:55:13+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:36e811210c551c6e2d693923860ca2be02071504003ea13652ebccaf9c209871"
time="2023-07-31T23:55:13+01:00" level=debug msg=Comparing local="sha256:36e811210c551c6e2d693923860ca2be02071504003ea13652ebccaf9c209871" remote="sha256:36e811210c551c6e2d693923860ca2be02071504003ea13652ebccaf9c209871"
time="2023-07-31T23:55:13+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:13+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:13+01:00" level=debug msg="No new images found for /Sabnzbd"
time="2023-07-31T23:55:13+01:00" level=debug msg="Trying to load authentication credentials." container=/Spotify image="linuxserver/your_spotify:latest"
time="2023-07-31T23:55:13+01:00" level=debug msg="No credentials for linuxserver found" config_file=/config.json
time="2023-07-31T23:55:13+01:00" level=debug msg="Got image name: linuxserver/your_spotify:latest"
time="2023-07-31T23:55:13+01:00" level=debug msg="Checking if pull is needed" container=/Spotify image="linuxserver/your_spotify:latest"
time="2023-07-31T23:55:13+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:14+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:14+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:14+01:00" level=debug msg="Setting scope for auth token" image=linuxserver/your_spotify scope="repository:linuxserver/your_spotify:pull"
time="2023-07-31T23:55:14+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:14+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=linuxserver/your_spotify normalized="docker.io/linuxserver/your_spotify:latest" tag=latest
time="2023-07-31T23:55:14+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/linuxserver/your_spotify/manifests/latest"
time="2023-07-31T23:55:14+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:7eac2e320f6b94feadc62092ed477bc04caf10146a2b5f8c495da46e1e281aad"
time="2023-07-31T23:55:14+01:00" level=debug msg=Comparing local="sha256:7eac2e320f6b94feadc62092ed477bc04caf10146a2b5f8c495da46e1e281aad" remote="sha256:7eac2e320f6b94feadc62092ed477bc04caf10146a2b5f8c495da46e1e281aad"
time="2023-07-31T23:55:14+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:14+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:14+01:00" level=debug msg="No new images found for /Spotify"
time="2023-07-31T23:55:14+01:00" level=debug msg="Trying to load authentication credentials." container=/Grafana image="grafana/grafana:latest"
time="2023-07-31T23:55:14+01:00" level=debug msg="No credentials for grafana found" config_file=/config.json
time="2023-07-31T23:55:14+01:00" level=debug msg="Got image name: grafana/grafana:latest"
time="2023-07-31T23:55:14+01:00" level=debug msg="Checking if pull is needed" container=/Grafana image="grafana/grafana:latest"
time="2023-07-31T23:55:14+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:15+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:15+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:15+01:00" level=debug msg="Setting scope for auth token" image=grafana/grafana scope="repository:grafana/grafana:pull"
time="2023-07-31T23:55:15+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:15+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=grafana/grafana normalized="docker.io/grafana/grafana:latest" tag=latest
time="2023-07-31T23:55:15+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/grafana/grafana/manifests/latest"
time="2023-07-31T23:55:15+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:423040d62678074111e4e72d7dcef23480a94eb4f21b9173204d1a5ee972ec59"
time="2023-07-31T23:55:15+01:00" level=debug msg=Comparing local="sha256:423040d62678074111e4e72d7dcef23480a94eb4f21b9173204d1a5ee972ec59" remote="sha256:423040d62678074111e4e72d7dcef23480a94eb4f21b9173204d1a5ee972ec59"
time="2023-07-31T23:55:15+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:15+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:15+01:00" level=debug msg="No new images found for /Grafana"
time="2023-07-31T23:55:15+01:00" level=debug msg="Trying to load authentication credentials." container=/Bitwarden image="vaultwarden/server:alpine"
time="2023-07-31T23:55:15+01:00" level=debug msg="No credentials for vaultwarden found" config_file=/config.json
time="2023-07-31T23:55:15+01:00" level=debug msg="Got image name: vaultwarden/server:alpine"
time="2023-07-31T23:55:15+01:00" level=debug msg="Checking if pull is needed" container=/Bitwarden image="vaultwarden/server:alpine"
time="2023-07-31T23:55:15+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:15+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:15+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:15+01:00" level=debug msg="Setting scope for auth token" image=vaultwarden/server scope="repository:vaultwarden/server:pull"
time="2023-07-31T23:55:15+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:15+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=vaultwarden/server normalized="docker.io/vaultwarden/server:alpine" tag=alpine
time="2023-07-31T23:55:15+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/vaultwarden/server/manifests/alpine"
time="2023-07-31T23:55:16+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:7111d46a6f59e71e0338d804af1f3f7f57eac45cef07993ab9b80f79c19449a4"
time="2023-07-31T23:55:16+01:00" level=debug msg=Comparing local="sha256:7111d46a6f59e71e0338d804af1f3f7f57eac45cef07993ab9b80f79c19449a4" remote="sha256:7111d46a6f59e71e0338d804af1f3f7f57eac45cef07993ab9b80f79c19449a4"
time="2023-07-31T23:55:16+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:16+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:16+01:00" level=debug msg="No new images found for /Bitwarden"
time="2023-07-31T23:55:16+01:00" level=debug msg="Trying to load authentication credentials." container=/Excalidraw image="excalidraw/excalidraw:latest"
time="2023-07-31T23:55:16+01:00" level=debug msg="No credentials for excalidraw found" config_file=/config.json
time="2023-07-31T23:55:16+01:00" level=debug msg="Got image name: excalidraw/excalidraw:latest"
time="2023-07-31T23:55:16+01:00" level=debug msg="Checking if pull is needed" container=/Excalidraw image="excalidraw/excalidraw:latest"
time="2023-07-31T23:55:16+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:16+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:16+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:16+01:00" level=debug msg="Setting scope for auth token" image=excalidraw/excalidraw scope="repository:excalidraw/excalidraw:pull"
time="2023-07-31T23:55:16+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:16+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=excalidraw/excalidraw normalized="docker.io/excalidraw/excalidraw:latest" tag=latest
time="2023-07-31T23:55:16+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/excalidraw/excalidraw/manifests/latest"
time="2023-07-31T23:55:17+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:648edf36c55793fdeed475e09a86fb6c16a68783dc442d37d5070adfc0362a8f"
time="2023-07-31T23:55:17+01:00" level=debug msg=Comparing local="sha256:648edf36c55793fdeed475e09a86fb6c16a68783dc442d37d5070adfc0362a8f" remote="sha256:648edf36c55793fdeed475e09a86fb6c16a68783dc442d37d5070adfc0362a8f"
time="2023-07-31T23:55:17+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:17+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:17+01:00" level=debug msg="No new images found for /Excalidraw"
time="2023-07-31T23:55:17+01:00" level=debug msg="Trying to load authentication credentials." container=/BookstackDBBackup image="tiredofit/db-backup:latest"
time="2023-07-31T23:55:17+01:00" level=debug msg="No credentials for tiredofit found" config_file=/config.json
time="2023-07-31T23:55:17+01:00" level=debug msg="Got image name: tiredofit/db-backup:latest"
time="2023-07-31T23:55:17+01:00" level=debug msg="Checking if pull is needed" container=/BookstackDBBackup image="tiredofit/db-backup:latest"
time="2023-07-31T23:55:17+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:17+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:17+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:17+01:00" level=debug msg="Setting scope for auth token" image=tiredofit/db-backup scope="repository:tiredofit/db-backup:pull"
time="2023-07-31T23:55:17+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:17+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=tiredofit/db-backup normalized="docker.io/tiredofit/db-backup:latest" tag=latest
time="2023-07-31T23:55:17+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/tiredofit/db-backup/manifests/latest"
time="2023-07-31T23:55:17+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:6ff7bd51713bef271726b28327ef82bab76fc31640734f0d73775069b6c99980"
time="2023-07-31T23:55:17+01:00" level=debug msg=Comparing local="sha256:6ff7bd51713bef271726b28327ef82bab76fc31640734f0d73775069b6c99980" remote="sha256:6ff7bd51713bef271726b28327ef82bab76fc31640734f0d73775069b6c99980"
time="2023-07-31T23:55:17+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:17+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:17+01:00" level=debug msg="No new images found for /BookstackDBBackup"
time="2023-07-31T23:55:17+01:00" level=debug msg="Trying to load authentication credentials." container=/Bookstack image="linuxserver/bookstack:23.06.1"
time="2023-07-31T23:55:17+01:00" level=debug msg="No credentials for linuxserver found" config_file=/config.json
time="2023-07-31T23:55:17+01:00" level=debug msg="Got image name: linuxserver/bookstack:23.06.1"
time="2023-07-31T23:55:17+01:00" level=debug msg="Checking if pull is needed" container=/Bookstack image="linuxserver/bookstack:23.06.1"
time="2023-07-31T23:55:17+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:18+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:18+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:18+01:00" level=debug msg="Setting scope for auth token" image=linuxserver/bookstack scope="repository:linuxserver/bookstack:pull"
time="2023-07-31T23:55:18+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:18+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=linuxserver/bookstack normalized="docker.io/linuxserver/bookstack:23.06.1" tag=23.06.1
time="2023-07-31T23:55:18+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/linuxserver/bookstack/manifests/23.06.1"
time="2023-07-31T23:55:18+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:09fef94073efacdd5cee65a6dbad304e4ab0afc397773abb2c739ad8cb8ec00a"
time="2023-07-31T23:55:18+01:00" level=debug msg=Comparing local="sha256:09fef94073efacdd5cee65a6dbad304e4ab0afc397773abb2c739ad8cb8ec00a" remote="sha256:09fef94073efacdd5cee65a6dbad304e4ab0afc397773abb2c739ad8cb8ec00a"
time="2023-07-31T23:55:18+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:18+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:18+01:00" level=debug msg="No new images found for /Bookstack"
time="2023-07-31T23:55:18+01:00" level=debug msg="Trying to load authentication credentials." container=/Bookstack-db image="linuxserver/mariadb:latest"
time="2023-07-31T23:55:18+01:00" level=debug msg="No credentials for linuxserver found" config_file=/config.json
time="2023-07-31T23:55:18+01:00" level=debug msg="Got image name: linuxserver/mariadb:latest"
time="2023-07-31T23:55:18+01:00" level=debug msg="Checking if pull is needed" container=/Bookstack-db image="linuxserver/mariadb:latest"
time="2023-07-31T23:55:18+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:19+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:19+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:19+01:00" level=debug msg="Setting scope for auth token" image=linuxserver/mariadb scope="repository:linuxserver/mariadb:pull"
time="2023-07-31T23:55:19+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:19+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=linuxserver/mariadb normalized="docker.io/linuxserver/mariadb:latest" tag=latest
time="2023-07-31T23:55:19+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/linuxserver/mariadb/manifests/latest"
time="2023-07-31T23:55:19+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:f5d6c069ab8a9d1842f469caa56e355787abfdfb62542f3d414e54d77b405999"
time="2023-07-31T23:55:19+01:00" level=debug msg=Comparing local="sha256:f5d6c069ab8a9d1842f469caa56e355787abfdfb62542f3d414e54d77b405999" remote="sha256:f5d6c069ab8a9d1842f469caa56e355787abfdfb62542f3d414e54d77b405999"
time="2023-07-31T23:55:19+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:19+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:19+01:00" level=debug msg="No new images found for /Bookstack-db"
time="2023-07-31T23:55:19+01:00" level=debug msg="Trying to load authentication credentials." container=/Crowdsec-Cloudflare-Bouncer image="crowdsecurity/cloudflare-bouncer:latest"
time="2023-07-31T23:55:19+01:00" level=debug msg="No credentials for crowdsecurity found" config_file=/config.json
time="2023-07-31T23:55:19+01:00" level=debug msg="Got image name: crowdsecurity/cloudflare-bouncer:latest"
time="2023-07-31T23:55:19+01:00" level=debug msg="Checking if pull is needed" container=/Crowdsec-Cloudflare-Bouncer image="crowdsecurity/cloudflare-bouncer:latest"
time="2023-07-31T23:55:19+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:19+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:19+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:19+01:00" level=debug msg="Setting scope for auth token" image=crowdsecurity/cloudflare-bouncer scope="repository:crowdsecurity/cloudflare-bouncer:pull"
time="2023-07-31T23:55:19+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:19+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=crowdsecurity/cloudflare-bouncer normalized="docker.io/crowdsecurity/cloudflare-bouncer:latest" tag=latest
time="2023-07-31T23:55:19+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/crowdsecurity/cloudflare-bouncer/manifests/latest"
time="2023-07-31T23:55:20+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:c760beb0d3ee2ca8c0ec65f3510f2917f2997b3976ca8434c267d6128791f31f"
time="2023-07-31T23:55:20+01:00" level=debug msg=Comparing local="sha256:c760beb0d3ee2ca8c0ec65f3510f2917f2997b3976ca8434c267d6128791f31f" remote="sha256:c760beb0d3ee2ca8c0ec65f3510f2917f2997b3976ca8434c267d6128791f31f"
time="2023-07-31T23:55:20+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:20+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:20+01:00" level=debug msg="No new images found for /Crowdsec-Cloudflare-Bouncer"
time="2023-07-31T23:55:20+01:00" level=debug msg="Trying to load authentication credentials." container=/Crowdsec-Traefik-Bouncer image="fbonalair/traefik-crowdsec-bouncer:latest"
time="2023-07-31T23:55:20+01:00" level=debug msg="No credentials for fbonalair found" config_file=/config.json
time="2023-07-31T23:55:20+01:00" level=debug msg="Got image name: fbonalair/traefik-crowdsec-bouncer:latest"
time="2023-07-31T23:55:20+01:00" level=debug msg="Checking if pull is needed" container=/Crowdsec-Traefik-Bouncer image="fbonalair/traefik-crowdsec-bouncer:latest"
time="2023-07-31T23:55:20+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:20+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:20+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:20+01:00" level=debug msg="Setting scope for auth token" image=fbonalair/traefik-crowdsec-bouncer scope="repository:fbonalair/traefik-crowdsec-bouncer:pull"
time="2023-07-31T23:55:20+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:20+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=fbonalair/traefik-crowdsec-bouncer normalized="docker.io/fbonalair/traefik-crowdsec-bouncer:latest" tag=latest
time="2023-07-31T23:55:20+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/fbonalair/traefik-crowdsec-bouncer/manifests/latest"
time="2023-07-31T23:55:21+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:e3e8f33923d2871069de08dd2931a9eb6c6760f76d6b9e3229d3b9c84211dd94"
time="2023-07-31T23:55:21+01:00" level=debug msg=Comparing local="sha256:e3e8f33923d2871069de08dd2931a9eb6c6760f76d6b9e3229d3b9c84211dd94" remote="sha256:e3e8f33923d2871069de08dd2931a9eb6c6760f76d6b9e3229d3b9c84211dd94"
time="2023-07-31T23:55:21+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:21+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:21+01:00" level=debug msg="No new images found for /Crowdsec-Traefik-Bouncer"
time="2023-07-31T23:55:21+01:00" level=debug msg="Trying to load authentication credentials." container=/Crowdsec image="crowdsecurity/crowdsec:latest"
time="2023-07-31T23:55:21+01:00" level=debug msg="No credentials for crowdsecurity found" config_file=/config.json
time="2023-07-31T23:55:21+01:00" level=debug msg="Got image name: crowdsecurity/crowdsec:latest"
time="2023-07-31T23:55:21+01:00" level=debug msg="Checking if pull is needed" container=/Crowdsec image="crowdsecurity/crowdsec:latest"
time="2023-07-31T23:55:21+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:21+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:21+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:21+01:00" level=debug msg="Setting scope for auth token" image=crowdsecurity/crowdsec scope="repository:crowdsecurity/crowdsec:pull"
time="2023-07-31T23:55:21+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:21+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=crowdsecurity/crowdsec normalized="docker.io/crowdsecurity/crowdsec:latest" tag=latest
time="2023-07-31T23:55:21+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/crowdsecurity/crowdsec/manifests/latest"
time="2023-07-31T23:55:21+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:46be86086296f81aba5fe904b75a285bbb51b87b21653060cd1984bed26bb236"
time="2023-07-31T23:55:21+01:00" level=debug msg=Comparing local="sha256:46be86086296f81aba5fe904b75a285bbb51b87b21653060cd1984bed26bb236" remote="sha256:46be86086296f81aba5fe904b75a285bbb51b87b21653060cd1984bed26bb236"
time="2023-07-31T23:55:21+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:21+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:21+01:00" level=debug msg="No new images found for /Crowdsec"
time="2023-07-31T23:55:21+01:00" level=debug msg="Trying to load authentication credentials." container=/Varken image="boerderij/varken:develop"
time="2023-07-31T23:55:21+01:00" level=debug msg="No credentials for boerderij found" config_file=/config.json
time="2023-07-31T23:55:21+01:00" level=debug msg="Got image name: boerderij/varken:develop"
time="2023-07-31T23:55:21+01:00" level=debug msg="Checking if pull is needed" container=/Varken image="boerderij/varken:develop"
time="2023-07-31T23:55:21+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:22+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:22+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:22+01:00" level=debug msg="Setting scope for auth token" image=boerderij/varken scope="repository:boerderij/varken:pull"
time="2023-07-31T23:55:22+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:22+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=boerderij/varken normalized="docker.io/boerderij/varken:develop" tag=develop
time="2023-07-31T23:55:22+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/boerderij/varken/manifests/develop"
time="2023-07-31T23:55:22+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:529f0e0df6f7832f0455bca749195c6ea0af15f7c7b6743bb9ab57273aebe143"
time="2023-07-31T23:55:22+01:00" level=debug msg=Comparing local="sha256:529f0e0df6f7832f0455bca749195c6ea0af15f7c7b6743bb9ab57273aebe143" remote="sha256:529f0e0df6f7832f0455bca749195c6ea0af15f7c7b6743bb9ab57273aebe143"
time="2023-07-31T23:55:22+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:22+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:22+01:00" level=debug msg="No new images found for /Varken"
time="2023-07-31T23:55:22+01:00" level=debug msg="Trying to load authentication credentials." container=/DroneRunner1 image="drone/drone-runner-docker:latest"
time="2023-07-31T23:55:22+01:00" level=debug msg="No credentials for drone found" config_file=/config.json
time="2023-07-31T23:55:22+01:00" level=debug msg="Got image name: drone/drone-runner-docker:latest"
time="2023-07-31T23:55:22+01:00" level=debug msg="Checking if pull is needed" container=/DroneRunner1 image="drone/drone-runner-docker:latest"
time="2023-07-31T23:55:22+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:23+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:23+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:23+01:00" level=debug msg="Setting scope for auth token" image=drone/drone-runner-docker scope="repository:drone/drone-runner-docker:pull"
time="2023-07-31T23:55:23+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:23+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=drone/drone-runner-docker normalized="docker.io/drone/drone-runner-docker:latest" tag=latest
time="2023-07-31T23:55:23+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/drone/drone-runner-docker/manifests/latest"
time="2023-07-31T23:55:23+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:b3c5981caa8ed2e181770fc8c4bf2f2ee7af2678df384e3ee226a049d7110c28"
time="2023-07-31T23:55:23+01:00" level=debug msg=Comparing local="sha256:b3c5981caa8ed2e181770fc8c4bf2f2ee7af2678df384e3ee226a049d7110c28" remote="sha256:b3c5981caa8ed2e181770fc8c4bf2f2ee7af2678df384e3ee226a049d7110c28"
time="2023-07-31T23:55:23+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:23+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:23+01:00" level=debug msg="No new images found for /DroneRunner1"
time="2023-07-31T23:55:23+01:00" level=debug msg="Trying to load authentication credentials." container=/Traefik image="traefik:latest"
time="2023-07-31T23:55:23+01:00" level=debug msg="No credentials for traefik:latest found" config_file=/config.json
time="2023-07-31T23:55:23+01:00" level=debug msg="Got image name: traefik:latest"
time="2023-07-31T23:55:23+01:00" level=debug msg="Checking if pull is needed" container=/Traefik image="traefik:latest"
time="2023-07-31T23:55:23+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:23+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:23+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:23+01:00" level=debug msg="Setting scope for auth token" image=traefik scope="repository:library/traefik:pull"
time="2023-07-31T23:55:23+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:23+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=traefik normalized="docker.io/library/traefik:latest" tag=latest
time="2023-07-31T23:55:23+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/library/traefik/manifests/latest"
time="2023-07-31T23:55:24+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:bbdacc7c3bec50bd2a4430e8a967df44376419634b733185a80ed79388134bdb"
time="2023-07-31T23:55:24+01:00" level=debug msg=Comparing local="sha256:bbdacc7c3bec50bd2a4430e8a967df44376419634b733185a80ed79388134bdb" remote="sha256:bbdacc7c3bec50bd2a4430e8a967df44376419634b733185a80ed79388134bdb"
time="2023-07-31T23:55:24+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:24+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:24+01:00" level=debug msg="No new images found for /Traefik"
time="2023-07-31T23:55:24+01:00" level=debug msg="Trying to load authentication credentials." container=/Plex-Autoscan image="cr.hotio.dev/hotio/autoscan:latest"
time="2023-07-31T23:55:24+01:00" level=debug msg="No credentials for cr.hotio.dev found" config_file=/config.json
time="2023-07-31T23:55:24+01:00" level=debug msg="Got image name: cr.hotio.dev/hotio/autoscan:latest"
time="2023-07-31T23:55:24+01:00" level=debug msg="Checking if pull is needed" container=/Plex-Autoscan image="cr.hotio.dev/hotio/autoscan:latest"
time="2023-07-31T23:55:24+01:00" level=debug msg="Building challenge URL" URL="https://cr.hotio.dev/v2/"
time="2023-07-31T23:55:24+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:24+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:24+01:00" level=debug msg="Setting scope for auth token" image=cr.hotio.dev/hotio/autoscan scope="repository:hotio/autoscan:pull"
time="2023-07-31T23:55:24+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:24+01:00" level=debug msg="Parsing image ref" host=cr.hotio.dev image=hotio/autoscan normalized="cr.hotio.dev/hotio/autoscan:latest" tag=latest
time="2023-07-31T23:55:24+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://cr.hotio.dev/v2/hotio/autoscan/manifests/latest"
time="2023-07-31T23:55:25+01:00" level=debug msg="Could not do a head request for \"cr.hotio.dev/hotio/autoscan:latest\", falling back to regular pull." container=/Plex-Autoscan image="cr.hotio.dev/hotio/autoscan:latest"
time="2023-07-31T23:55:25+01:00" level=debug msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:hotio/autoscan:pull\\\"\"" container=/Plex-Autoscan image="cr.hotio.dev/hotio/autoscan:latest"
time="2023-07-31T23:55:25+01:00" level=debug msg="Pulling image" container=/Plex-Autoscan image="cr.hotio.dev/hotio/autoscan:latest"
time="2023-07-31T23:55:26+01:00" level=debug msg="No new images found for /Plex-Autoscan"
time="2023-07-31T23:55:26+01:00" level=debug msg="Trying to load authentication credentials." container=/Telegraf image="modem7/telegraf:latest"
time="2023-07-31T23:55:26+01:00" level=debug msg="No credentials for modem7 found" config_file=/config.json
time="2023-07-31T23:55:26+01:00" level=debug msg="Got image name: modem7/telegraf:latest"
time="2023-07-31T23:55:26+01:00" level=debug msg="Checking if pull is needed" container=/Telegraf image="modem7/telegraf:latest"
time="2023-07-31T23:55:26+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:26+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:26+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:26+01:00" level=debug msg="Setting scope for auth token" image=modem7/telegraf scope="repository:modem7/telegraf:pull"
time="2023-07-31T23:55:26+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:27+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=modem7/telegraf normalized="docker.io/modem7/telegraf:latest" tag=latest
time="2023-07-31T23:55:27+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/modem7/telegraf/manifests/latest"
time="2023-07-31T23:55:27+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:fe0fd524ac4fcb83f218c58530ea01d53ce7e7a12410bf4c6b1618f268131dab"
time="2023-07-31T23:55:27+01:00" level=debug msg=Comparing local="sha256:fe0fd524ac4fcb83f218c58530ea01d53ce7e7a12410bf4c6b1618f268131dab" remote="sha256:fe0fd524ac4fcb83f218c58530ea01d53ce7e7a12410bf4c6b1618f268131dab"
time="2023-07-31T23:55:27+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:27+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:27+01:00" level=debug msg="No new images found for /Telegraf"
time="2023-07-31T23:55:27+01:00" level=debug msg="Trying to load authentication credentials." container=/Prowlarr image="linuxserver/prowlarr:latest"
time="2023-07-31T23:55:27+01:00" level=debug msg="No credentials for linuxserver found" config_file=/config.json
time="2023-07-31T23:55:27+01:00" level=debug msg="Got image name: linuxserver/prowlarr:latest"
time="2023-07-31T23:55:27+01:00" level=debug msg="Checking if pull is needed" container=/Prowlarr image="linuxserver/prowlarr:latest"
time="2023-07-31T23:55:27+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:27+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:27+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:27+01:00" level=debug msg="Setting scope for auth token" image=linuxserver/prowlarr scope="repository:linuxserver/prowlarr:pull"
time="2023-07-31T23:55:27+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:28+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=linuxserver/prowlarr normalized="docker.io/linuxserver/prowlarr:latest" tag=latest
time="2023-07-31T23:55:28+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/linuxserver/prowlarr/manifests/latest"
time="2023-07-31T23:55:28+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:ea6a6c32a10259ddaf8dc2a81c4b4948156ce0034f1a0cbc11b9536c6e401a06"
time="2023-07-31T23:55:28+01:00" level=debug msg=Comparing local="sha256:ea6a6c32a10259ddaf8dc2a81c4b4948156ce0034f1a0cbc11b9536c6e401a06" remote="sha256:ea6a6c32a10259ddaf8dc2a81c4b4948156ce0034f1a0cbc11b9536c6e401a06"
time="2023-07-31T23:55:28+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:28+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:28+01:00" level=debug msg="No new images found for /Prowlarr"
time="2023-07-31T23:55:28+01:00" level=debug msg="Trying to load authentication credentials." container=/Bazarr image="linuxserver/bazarr:latest"
time="2023-07-31T23:55:28+01:00" level=debug msg="No credentials for linuxserver found" config_file=/config.json
time="2023-07-31T23:55:28+01:00" level=debug msg="Got image name: linuxserver/bazarr:latest"
time="2023-07-31T23:55:28+01:00" level=debug msg="Checking if pull is needed" container=/Bazarr image="linuxserver/bazarr:latest"
time="2023-07-31T23:55:28+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:28+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:28+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:28+01:00" level=debug msg="Setting scope for auth token" image=linuxserver/bazarr scope="repository:linuxserver/bazarr:pull"
time="2023-07-31T23:55:28+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:28+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=linuxserver/bazarr normalized="docker.io/linuxserver/bazarr:latest" tag=latest
time="2023-07-31T23:55:28+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/linuxserver/bazarr/manifests/latest"
time="2023-07-31T23:55:29+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:53543497c445fe44e9bab3cc3e06047c74070d7a3569550fdbd06b91456fc0e3"
time="2023-07-31T23:55:29+01:00" level=debug msg=Comparing local="sha256:53543497c445fe44e9bab3cc3e06047c74070d7a3569550fdbd06b91456fc0e3" remote="sha256:53543497c445fe44e9bab3cc3e06047c74070d7a3569550fdbd06b91456fc0e3"
time="2023-07-31T23:55:29+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:29+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:29+01:00" level=debug msg="No new images found for /Bazarr"
time="2023-07-31T23:55:29+01:00" level=debug msg="Trying to load authentication credentials." container=/Borgmatic image="modem7/borgmatic-docker:dockercli"
time="2023-07-31T23:55:29+01:00" level=debug msg="No credentials for modem7 found" config_file=/config.json
time="2023-07-31T23:55:29+01:00" level=debug msg="Got image name: modem7/borgmatic-docker:dockercli"
time="2023-07-31T23:55:29+01:00" level=debug msg="Checking if pull is needed" container=/Borgmatic image="modem7/borgmatic-docker:dockercli"
time="2023-07-31T23:55:29+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:29+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:29+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:29+01:00" level=debug msg="Setting scope for auth token" image=modem7/borgmatic-docker scope="repository:modem7/borgmatic-docker:pull"
time="2023-07-31T23:55:29+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:29+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=modem7/borgmatic-docker normalized="docker.io/modem7/borgmatic-docker:dockercli" tag=dockercli
time="2023-07-31T23:55:29+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/modem7/borgmatic-docker/manifests/dockercli"
time="2023-07-31T23:55:30+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:84a972c3ac80dabb3a7ef4ef84c01a88853666844dff6f7444536e883cdf33d9"
time="2023-07-31T23:55:30+01:00" level=debug msg=Comparing local="sha256:84a972c3ac80dabb3a7ef4ef84c01a88853666844dff6f7444536e883cdf33d9" remote="sha256:84a972c3ac80dabb3a7ef4ef84c01a88853666844dff6f7444536e883cdf33d9"
time="2023-07-31T23:55:30+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:30+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:30+01:00" level=debug msg="No new images found for /Borgmatic"
time="2023-07-31T23:55:30+01:00" level=debug msg="Trying to load authentication credentials." container=/DroneCI image="drone/drone:latest"
time="2023-07-31T23:55:30+01:00" level=debug msg="No credentials for drone found" config_file=/config.json
time="2023-07-31T23:55:30+01:00" level=debug msg="Got image name: drone/drone:latest"
time="2023-07-31T23:55:30+01:00" level=debug msg="Checking if pull is needed" container=/DroneCI image="drone/drone:latest"
time="2023-07-31T23:55:30+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:30+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:30+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:30+01:00" level=debug msg="Setting scope for auth token" image=drone/drone scope="repository:drone/drone:pull"
time="2023-07-31T23:55:30+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:30+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=drone/drone normalized="docker.io/drone/drone:latest" tag=latest
time="2023-07-31T23:55:30+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/drone/drone/manifests/latest"
time="2023-07-31T23:55:30+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:9b9dc65227a92d4407f91ae9a8f483ca0c6f9155668b3a237a25a7f70e2c2420"
time="2023-07-31T23:55:30+01:00" level=debug msg=Comparing local="sha256:9b9dc65227a92d4407f91ae9a8f483ca0c6f9155668b3a237a25a7f70e2c2420" remote="sha256:9b9dc65227a92d4407f91ae9a8f483ca0c6f9155668b3a237a25a7f70e2c2420"
time="2023-07-31T23:55:30+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:30+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:30+01:00" level=debug msg="No new images found for /DroneCI"
time="2023-07-31T23:55:30+01:00" level=debug msg="Trying to load authentication credentials." container=/Picoshare image="mtlynch/picoshare:latest"
time="2023-07-31T23:55:30+01:00" level=debug msg="No credentials for mtlynch found" config_file=/config.json
time="2023-07-31T23:55:30+01:00" level=debug msg="Got image name: mtlynch/picoshare:latest"
time="2023-07-31T23:55:30+01:00" level=debug msg="Checking if pull is needed" container=/Picoshare image="mtlynch/picoshare:latest"
time="2023-07-31T23:55:30+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:31+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:31+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:31+01:00" level=debug msg="Setting scope for auth token" image=mtlynch/picoshare scope="repository:mtlynch/picoshare:pull"
time="2023-07-31T23:55:31+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:31+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=mtlynch/picoshare normalized="docker.io/mtlynch/picoshare:latest" tag=latest
time="2023-07-31T23:55:31+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/mtlynch/picoshare/manifests/latest"
time="2023-07-31T23:55:31+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:67bd53968859b136a651b6befb911ad89c88a9dce91422e55388161729d0c858"
time="2023-07-31T23:55:31+01:00" level=debug msg=Comparing local="sha256:67bd53968859b136a651b6befb911ad89c88a9dce91422e55388161729d0c858" remote="sha256:67bd53968859b136a651b6befb911ad89c88a9dce91422e55388161729d0c858"
time="2023-07-31T23:55:31+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:31+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:31+01:00" level=debug msg="No new images found for /Picoshare"
time="2023-07-31T23:55:31+01:00" level=debug msg="Trying to load authentication credentials." container=/Spotify_DB image="mongo:6"
time="2023-07-31T23:55:31+01:00" level=debug msg="No credentials for mongo:6 found" config_file=/config.json
time="2023-07-31T23:55:31+01:00" level=debug msg="Got image name: mongo:6"
time="2023-07-31T23:55:31+01:00" level=debug msg="Checking if pull is needed" container=/Spotify_DB image="mongo:6"
time="2023-07-31T23:55:31+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:31+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:31+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:31+01:00" level=debug msg="Setting scope for auth token" image=mongo scope="repository:library/mongo:pull"
time="2023-07-31T23:55:31+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:32+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=mongo normalized="docker.io/library/mongo:6" tag=6
time="2023-07-31T23:55:32+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/library/mongo/manifests/6"
time="2023-07-31T23:55:32+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:20f3adcaffe2193e49dd502c8299b770d49a1e0643e0e9db250d5c127b1e9ed8"
time="2023-07-31T23:55:32+01:00" level=debug msg=Comparing local="sha256:20f3adcaffe2193e49dd502c8299b770d49a1e0643e0e9db250d5c127b1e9ed8" remote="sha256:20f3adcaffe2193e49dd502c8299b770d49a1e0643e0e9db250d5c127b1e9ed8"
time="2023-07-31T23:55:32+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:32+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:32+01:00" level=debug msg="No new images found for /Spotify_DB"
time="2023-07-31T23:55:32+01:00" level=debug msg="Trying to load authentication credentials." container=/Tautulli image="tautulli/tautulli:latest"
time="2023-07-31T23:55:32+01:00" level=debug msg="No credentials for tautulli found" config_file=/config.json
time="2023-07-31T23:55:32+01:00" level=debug msg="Got image name: tautulli/tautulli:latest"
time="2023-07-31T23:55:32+01:00" level=debug msg="Checking if pull is needed" container=/Tautulli image="tautulli/tautulli:latest"
time="2023-07-31T23:55:32+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:32+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:32+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:32+01:00" level=debug msg="Setting scope for auth token" image=tautulli/tautulli scope="repository:tautulli/tautulli:pull"
time="2023-07-31T23:55:32+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:32+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=tautulli/tautulli normalized="docker.io/tautulli/tautulli:latest" tag=latest
time="2023-07-31T23:55:32+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/tautulli/tautulli/manifests/latest"
time="2023-07-31T23:55:33+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:e28d9e370634419535126e2ade5bab9cfa7dc2a5d4358c70d2db7829e1e2614c"
time="2023-07-31T23:55:33+01:00" level=debug msg=Comparing local="sha256:e28d9e370634419535126e2ade5bab9cfa7dc2a5d4358c70d2db7829e1e2614c" remote="sha256:e28d9e370634419535126e2ade5bab9cfa7dc2a5d4358c70d2db7829e1e2614c"
time="2023-07-31T23:55:33+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:33+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:33+01:00" level=debug msg="No new images found for /Tautulli"
time="2023-07-31T23:55:33+01:00" level=debug msg="Trying to load authentication credentials." container=/Plex image="plexinc/pms-docker:plexpass"
time="2023-07-31T23:55:33+01:00" level=debug msg="No credentials for plexinc found" config_file=/config.json
time="2023-07-31T23:55:33+01:00" level=debug msg="Got image name: plexinc/pms-docker:plexpass"
time="2023-07-31T23:55:33+01:00" level=debug msg="Checking if pull is needed" container=/Plex image="plexinc/pms-docker:plexpass"
time="2023-07-31T23:55:33+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:33+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:33+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:33+01:00" level=debug msg="Setting scope for auth token" image=plexinc/pms-docker scope="repository:plexinc/pms-docker:pull"
time="2023-07-31T23:55:33+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:33+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=plexinc/pms-docker normalized="docker.io/plexinc/pms-docker:plexpass" tag=plexpass
time="2023-07-31T23:55:33+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/plexinc/pms-docker/manifests/plexpass"
time="2023-07-31T23:55:34+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:8aeb4a982ea564ad309861dd251cd9e218aac3f4e4d3da21375568341be1b16f"
time="2023-07-31T23:55:34+01:00" level=debug msg=Comparing local="sha256:8aeb4a982ea564ad309861dd251cd9e218aac3f4e4d3da21375568341be1b16f" remote="sha256:8aeb4a982ea564ad309861dd251cd9e218aac3f4e4d3da21375568341be1b16f"
time="2023-07-31T23:55:34+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:34+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:34+01:00" level=debug msg="No new images found for /Plex"
time="2023-07-31T23:55:34+01:00" level=debug msg="Trying to load authentication credentials." container=/Speedtest image="ghcr.io/alexjustesen/speedtest-tracker:latest"
time="2023-07-31T23:55:34+01:00" level=debug msg="No credentials for ghcr.io found" config_file=/config.json
time="2023-07-31T23:55:34+01:00" level=debug msg="Got image name: ghcr.io/alexjustesen/speedtest-tracker:latest"
time="2023-07-31T23:55:34+01:00" level=debug msg="Checking if pull is needed" container=/Speedtest image="ghcr.io/alexjustesen/speedtest-tracker:latest"
time="2023-07-31T23:55:34+01:00" level=debug msg="Building challenge URL" URL="https://ghcr.io/v2/"
time="2023-07-31T23:55:34+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:user/image:pull\"" status="401 Unauthorized"
time="2023-07-31T23:55:34+01:00" level=debug msg="Checking challenge header content" realm="https://ghcr.io/token" service=ghcr.io
time="2023-07-31T23:55:34+01:00" level=debug msg="Setting scope for auth token" image=ghcr.io/alexjustesen/speedtest-tracker scope="repository:ghcr.io/alexjustesen/speedtest-tracker:pull"
time="2023-07-31T23:55:34+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:34+01:00" level=debug msg="Parsing image ref" host=ghcr.io image=alexjustesen/speedtest-tracker normalized="ghcr.io/alexjustesen/speedtest-tracker:latest" tag=latest
time="2023-07-31T23:55:34+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://ghcr.io/v2/alexjustesen/speedtest-tracker/manifests/latest"
time="2023-07-31T23:55:34+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:c15a34d0f8b69dda5028fbd500e44bf7d89bc5eb026fc269fe50f84ad1f63ae8"
time="2023-07-31T23:55:34+01:00" level=debug msg=Comparing local="sha256:c15a34d0f8b69dda5028fbd500e44bf7d89bc5eb026fc269fe50f84ad1f63ae8" remote="sha256:c15a34d0f8b69dda5028fbd500e44bf7d89bc5eb026fc269fe50f84ad1f63ae8"
time="2023-07-31T23:55:34+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:34+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:34+01:00" level=debug msg="No new images found for /Speedtest"
time="2023-07-31T23:55:34+01:00" level=debug msg="Trying to load authentication credentials." container=/LanguageTool image="erikvl87/languagetool:latest"
time="2023-07-31T23:55:34+01:00" level=debug msg="No credentials for erikvl87 found" config_file=/config.json
time="2023-07-31T23:55:34+01:00" level=debug msg="Got image name: erikvl87/languagetool:latest"
time="2023-07-31T23:55:34+01:00" level=debug msg="Checking if pull is needed" container=/LanguageTool image="erikvl87/languagetool:latest"
time="2023-07-31T23:55:34+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:34+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:34+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:34+01:00" level=debug msg="Setting scope for auth token" image=erikvl87/languagetool scope="repository:erikvl87/languagetool:pull"
time="2023-07-31T23:55:34+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:35+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=erikvl87/languagetool normalized="docker.io/erikvl87/languagetool:latest" tag=latest
time="2023-07-31T23:55:35+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/erikvl87/languagetool/manifests/latest"
time="2023-07-31T23:55:35+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:b8a5b3e15d9bbabb71b4ecf2d47d4e9e55ab2336bb45c14260f5aa452b383c0c"
time="2023-07-31T23:55:35+01:00" level=debug msg=Comparing local="sha256:b8a5b3e15d9bbabb71b4ecf2d47d4e9e55ab2336bb45c14260f5aa452b383c0c" remote="sha256:b8a5b3e15d9bbabb71b4ecf2d47d4e9e55ab2336bb45c14260f5aa452b383c0c"
time="2023-07-31T23:55:35+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:35+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:35+01:00" level=debug msg="No new images found for /LanguageTool"
time="2023-07-31T23:55:35+01:00" level=debug msg="Trying to load authentication credentials." container=/Cloudflare-DDNS image="favonia/cloudflare-ddns:latest"
time="2023-07-31T23:55:35+01:00" level=debug msg="No credentials for favonia found" config_file=/config.json
time="2023-07-31T23:55:35+01:00" level=debug msg="Got image name: favonia/cloudflare-ddns:latest"
time="2023-07-31T23:55:35+01:00" level=debug msg="Checking if pull is needed" container=/Cloudflare-DDNS image="favonia/cloudflare-ddns:latest"
time="2023-07-31T23:55:35+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:35+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:35+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:35+01:00" level=debug msg="Setting scope for auth token" image=favonia/cloudflare-ddns scope="repository:favonia/cloudflare-ddns:pull"
time="2023-07-31T23:55:35+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:35+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=favonia/cloudflare-ddns normalized="docker.io/favonia/cloudflare-ddns:latest" tag=latest
time="2023-07-31T23:55:35+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/favonia/cloudflare-ddns/manifests/latest"
time="2023-07-31T23:55:36+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:4c516fb229a36b707ca58676ff8129d47b6b430f42648abba139f230d617aff0"
time="2023-07-31T23:55:36+01:00" level=debug msg=Comparing local="sha256:4c516fb229a36b707ca58676ff8129d47b6b430f42648abba139f230d617aff0" remote="sha256:4c516fb229a36b707ca58676ff8129d47b6b430f42648abba139f230d617aff0"
time="2023-07-31T23:55:36+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:36+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:36+01:00" level=debug msg="No new images found for /Cloudflare-DDNS"
time="2023-07-31T23:55:36+01:00" level=debug msg="Trying to load authentication credentials." container=/Authelia image="authelia/authelia:latest"
time="2023-07-31T23:55:36+01:00" level=debug msg="No credentials for authelia found" config_file=/config.json
time="2023-07-31T23:55:36+01:00" level=debug msg="Got image name: authelia/authelia:latest"
time="2023-07-31T23:55:36+01:00" level=debug msg="Checking if pull is needed" container=/Authelia image="authelia/authelia:latest"
time="2023-07-31T23:55:36+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:36+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:36+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:36+01:00" level=debug msg="Setting scope for auth token" image=authelia/authelia scope="repository:authelia/authelia:pull"
time="2023-07-31T23:55:36+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:36+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=authelia/authelia normalized="docker.io/authelia/authelia:latest" tag=latest
time="2023-07-31T23:55:36+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/authelia/authelia/manifests/latest"
time="2023-07-31T23:55:36+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:25fc5423238b6f3a1fc967fda3f6a9212846aeb4a720327ef61c8ccff52dbbe2"
time="2023-07-31T23:55:36+01:00" level=debug msg=Comparing local="sha256:25fc5423238b6f3a1fc967fda3f6a9212846aeb4a720327ef61c8ccff52dbbe2" remote="sha256:25fc5423238b6f3a1fc967fda3f6a9212846aeb4a720327ef61c8ccff52dbbe2"
time="2023-07-31T23:55:36+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:36+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:36+01:00" level=debug msg="No new images found for /Authelia"
time="2023-07-31T23:55:36+01:00" level=debug msg="Trying to load authentication credentials." container=/Timetagger image="ghcr.io/almarklein/timetagger:latest"
time="2023-07-31T23:55:36+01:00" level=debug msg="No credentials for ghcr.io found" config_file=/config.json
time="2023-07-31T23:55:36+01:00" level=debug msg="Got image name: ghcr.io/almarklein/timetagger:latest"
time="2023-07-31T23:55:36+01:00" level=debug msg="Checking if pull is needed" container=/Timetagger image="ghcr.io/almarklein/timetagger:latest"
time="2023-07-31T23:55:36+01:00" level=debug msg="Building challenge URL" URL="https://ghcr.io/v2/"
time="2023-07-31T23:55:37+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:user/image:pull\"" status="401 Unauthorized"
time="2023-07-31T23:55:37+01:00" level=debug msg="Checking challenge header content" realm="https://ghcr.io/token" service=ghcr.io
time="2023-07-31T23:55:37+01:00" level=debug msg="Setting scope for auth token" image=ghcr.io/almarklein/timetagger scope="repository:ghcr.io/almarklein/timetagger:pull"
time="2023-07-31T23:55:37+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:37+01:00" level=debug msg="Parsing image ref" host=ghcr.io image=almarklein/timetagger normalized="ghcr.io/almarklein/timetagger:latest" tag=latest
time="2023-07-31T23:55:37+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://ghcr.io/v2/almarklein/timetagger/manifests/latest"
time="2023-07-31T23:55:37+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:6162c82c15524844cadd06777a918188f99868ee2ed2e45057fe28ce8589930a"
time="2023-07-31T23:55:37+01:00" level=debug msg=Comparing local="sha256:6162c82c15524844cadd06777a918188f99868ee2ed2e45057fe28ce8589930a" remote="sha256:6162c82c15524844cadd06777a918188f99868ee2ed2e45057fe28ce8589930a"
time="2023-07-31T23:55:37+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:37+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:37+01:00" level=debug msg="No new images found for /Timetagger"
time="2023-07-31T23:55:37+01:00" level=debug msg="Trying to load authentication credentials." container=/GrafanaDB image="influxdb:1.8-alpine"
time="2023-07-31T23:55:37+01:00" level=debug msg="No credentials for influxdb:1.8-alpine found" config_file=/config.json
time="2023-07-31T23:55:37+01:00" level=debug msg="Got image name: influxdb:1.8-alpine"
time="2023-07-31T23:55:37+01:00" level=debug msg="Checking if pull is needed" container=/GrafanaDB image="influxdb:1.8-alpine"
time="2023-07-31T23:55:37+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:37+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:37+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:37+01:00" level=debug msg="Setting scope for auth token" image=influxdb scope="repository:library/influxdb:pull"
time="2023-07-31T23:55:37+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:37+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=influxdb normalized="docker.io/library/influxdb:1.8-alpine" tag=1.8-alpine
time="2023-07-31T23:55:37+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/library/influxdb/manifests/1.8-alpine"
time="2023-07-31T23:55:38+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:4a893daadfa691938bcc95638ce23f177c42dbe9915570ba5f675e8346d5ab3b"
time="2023-07-31T23:55:38+01:00" level=debug msg=Comparing local="sha256:4a893daadfa691938bcc95638ce23f177c42dbe9915570ba5f675e8346d5ab3b" remote="sha256:4a893daadfa691938bcc95638ce23f177c42dbe9915570ba5f675e8346d5ab3b"
time="2023-07-31T23:55:38+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:38+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:38+01:00" level=debug msg="No new images found for /GrafanaDB"
time="2023-07-31T23:55:38+01:00" level=debug msg="Trying to load authentication credentials." container=/Hastypaste image="ghcr.io/enchant97/hasty-paste:latest"
time="2023-07-31T23:55:38+01:00" level=debug msg="No credentials for ghcr.io found" config_file=/config.json
time="2023-07-31T23:55:38+01:00" level=debug msg="Got image name: ghcr.io/enchant97/hasty-paste:latest"
time="2023-07-31T23:55:38+01:00" level=debug msg="Checking if pull is needed" container=/Hastypaste image="ghcr.io/enchant97/hasty-paste:latest"
time="2023-07-31T23:55:38+01:00" level=debug msg="Building challenge URL" URL="https://ghcr.io/v2/"
time="2023-07-31T23:55:38+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://ghcr.io/token\",service=\"ghcr.io\",scope=\"repository:user/image:pull\"" status="401 Unauthorized"
time="2023-07-31T23:55:38+01:00" level=debug msg="Checking challenge header content" realm="https://ghcr.io/token" service=ghcr.io
time="2023-07-31T23:55:38+01:00" level=debug msg="Setting scope for auth token" image=ghcr.io/enchant97/hasty-paste scope="repository:ghcr.io/enchant97/hasty-paste:pull"
time="2023-07-31T23:55:38+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:38+01:00" level=debug msg="Parsing image ref" host=ghcr.io image=enchant97/hasty-paste normalized="ghcr.io/enchant97/hasty-paste:latest" tag=latest
time="2023-07-31T23:55:38+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://ghcr.io/v2/enchant97/hasty-paste/manifests/latest"
time="2023-07-31T23:55:38+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:fbbb670ac9b201bf0a47feaa7b1588b5b5c4657bbf49518f9534f12e8e80ce3d"
time="2023-07-31T23:55:38+01:00" level=debug msg=Comparing local="sha256:fbbb670ac9b201bf0a47feaa7b1588b5b5c4657bbf49518f9534f12e8e80ce3d" remote="sha256:fbbb670ac9b201bf0a47feaa7b1588b5b5c4657bbf49518f9534f12e8e80ce3d"
time="2023-07-31T23:55:38+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:38+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:38+01:00" level=debug msg="No new images found for /Hastypaste"
time="2023-07-31T23:55:38+01:00" level=debug msg="Trying to load authentication credentials." container=/Portainer image="portainer/portainer-ee:alpine"
time="2023-07-31T23:55:38+01:00" level=debug msg="No credentials for portainer found" config_file=/config.json
time="2023-07-31T23:55:38+01:00" level=debug msg="Got image name: portainer/portainer-ee:alpine"
time="2023-07-31T23:55:38+01:00" level=debug msg="Checking if pull is needed" container=/Portainer image="portainer/portainer-ee:alpine"
time="2023-07-31T23:55:38+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:39+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:39+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:39+01:00" level=debug msg="Setting scope for auth token" image=portainer/portainer-ee scope="repository:portainer/portainer-ee:pull"
time="2023-07-31T23:55:39+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:39+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=portainer/portainer-ee normalized="docker.io/portainer/portainer-ee:alpine" tag=alpine
time="2023-07-31T23:55:39+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/portainer/portainer-ee/manifests/alpine"
time="2023-07-31T23:55:39+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:b53122b26f1e8068c17a7a80b584e285d2da892a7713df4b90787a4e357ecc9c"
time="2023-07-31T23:55:39+01:00" level=debug msg=Comparing local="sha256:b53122b26f1e8068c17a7a80b584e285d2da892a7713df4b90787a4e357ecc9c" remote="sha256:b53122b26f1e8068c17a7a80b584e285d2da892a7713df4b90787a4e357ecc9c"
time="2023-07-31T23:55:39+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:39+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:39+01:00" level=debug msg="No new images found for /Portainer"
time="2023-07-31T23:55:39+01:00" level=debug msg="Trying to load authentication credentials." container=/Monocker image="petersem/monocker:latest"
time="2023-07-31T23:55:39+01:00" level=debug msg="No credentials for petersem found" config_file=/config.json
time="2023-07-31T23:55:39+01:00" level=debug msg="Got image name: petersem/monocker:latest"
time="2023-07-31T23:55:39+01:00" level=debug msg="Checking if pull is needed" container=/Monocker image="petersem/monocker:latest"
time="2023-07-31T23:55:39+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:39+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:39+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:39+01:00" level=debug msg="Setting scope for auth token" image=petersem/monocker scope="repository:petersem/monocker:pull"
time="2023-07-31T23:55:39+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:40+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=petersem/monocker normalized="docker.io/petersem/monocker:latest" tag=latest
time="2023-07-31T23:55:40+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/petersem/monocker/manifests/latest"
time="2023-07-31T23:55:40+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:9c6d837411468e4d4a685b6cb156a16122e726fe08cd1169516f936db84516cf"
time="2023-07-31T23:55:40+01:00" level=debug msg=Comparing local="sha256:9c6d837411468e4d4a685b6cb156a16122e726fe08cd1169516f936db84516cf" remote="sha256:9c6d837411468e4d4a685b6cb156a16122e726fe08cd1169516f936db84516cf"
time="2023-07-31T23:55:40+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:40+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:40+01:00" level=debug msg="No new images found for /Monocker"
time="2023-07-31T23:55:40+01:00" level=debug msg="Trying to load authentication credentials." container=/AutoHeal image="modem7/docker-autoheal:latest"
time="2023-07-31T23:55:40+01:00" level=debug msg="No credentials for modem7 found" config_file=/config.json
time="2023-07-31T23:55:40+01:00" level=debug msg="Got image name: modem7/docker-autoheal:latest"
time="2023-07-31T23:55:40+01:00" level=debug msg="Checking if pull is needed" container=/AutoHeal image="modem7/docker-autoheal:latest"
time="2023-07-31T23:55:40+01:00" level=debug msg="Building challenge URL" URL="https://index.docker.io/v2/"
time="2023-07-31T23:55:40+01:00" level=debug msg="Got response to challenge request" header="Bearer realm=\"https://auth.docker.io/token\",service=\"registry.docker.io\"" status="401 Unauthorized"
time="2023-07-31T23:55:40+01:00" level=debug msg="Checking challenge header content" realm="https://auth.docker.io/token" service=registry.docker.io
time="2023-07-31T23:55:40+01:00" level=debug msg="Setting scope for auth token" image=modem7/docker-autoheal scope="repository:modem7/docker-autoheal:pull"
time="2023-07-31T23:55:40+01:00" level=debug msg="No credentials found."
time="2023-07-31T23:55:40+01:00" level=debug msg="Parsing image ref" host=index.docker.io image=modem7/docker-autoheal normalized="docker.io/modem7/docker-autoheal:latest" tag=latest
time="2023-07-31T23:55:40+01:00" level=debug msg="Doing a HEAD request to fetch a digest" url="https://index.docker.io/v2/modem7/docker-autoheal/manifests/latest"
time="2023-07-31T23:55:41+01:00" level=debug msg="Found a remote digest to compare with" remote="sha256:07fa53c858d294e202ee8a335ff5a3c4567e6cfc03e2c297dbdd41c1ec442a66"
time="2023-07-31T23:55:41+01:00" level=debug msg=Comparing local="sha256:07fa53c858d294e202ee8a335ff5a3c4567e6cfc03e2c297dbdd41c1ec442a66" remote="sha256:07fa53c858d294e202ee8a335ff5a3c4567e6cfc03e2c297dbdd41c1ec442a66"
time="2023-07-31T23:55:41+01:00" level=debug msg="Found a match"
time="2023-07-31T23:55:41+01:00" level=debug msg="No pull needed. Skipping image."
time="2023-07-31T23:55:41+01:00" level=debug msg="No new images found for /AutoHeal"
time="2023-07-31T23:55:41+01:00" level=debug msg="This is the watchtower container /Watchtower"
time="2023-07-31T23:55:41+01:00" level=info msg="Session done" Failed=0 Scanned=50 Updated=0 notify=no
time="2023-07-31T23:55:41+01:00" level=debug msg="Scheduled next run: 2023-08-01 23:55:00 +0100 BST"
time="2023-07-31T23:55:41+01:00" level=fatal msg="Notification template error" error="template: :1:7: executing \"\" at <.Report>: can't evaluate field Report in type []*logrus.Entry" notify=no
time="2023-07-31T23:55:42+01:00" level=debug msg="Sleeping for a second to ensure the docker api client has been properly initialized."
time="2023-07-31T23:55:43+01:00" level=debug msg="Making sure everything is sane before starting"
time="2023-07-31T23:55:43+01:00" level=debug msg="Retrieving running, stopped and exited containers"
time="2023-07-31T23:55:43+01:00" level=debug msg="There are no additional watchtower containers"
time="2023-07-31T23:55:43+01:00" level=info msg="Watchtower 1.5.3" notify=no
time="2023-07-31T23:55:43+01:00" level=info msg="Using notifications: telegram" notify=no
time="2023-07-31T23:55:43+01:00" level=info msg="Checking all containers (except explicitly disabled with label)" notify=no
time="2023-07-31T23:55:43+01:00" level=info msg="Scheduling first run: 2023-08-01 23:55:00 +0100 BST" notify=no
time="2023-07-31T23:55:43+01:00" level=info msg="Note that the first check will be performed in 23 hours, 59 minutes, 16 seconds" notify=no
time="2023-07-31T23:56:18+01:00" level=debug msg="Valid token found."
modem7 commented 1 year ago

Resolved.

Didn't have WATCHTOWER_NOTIFICATION_REPORT: true in my compose file.

All working as expected