Private Docker Registry restricting external traffic

We are running a private docker registry, and want to ensure that any form of phone home, or communication to other registries is disabled. I believe we saw some communication going out of the registry with version 2.6.2, and I am trying to understand if there are settings in the config.yml that should be set.

We are running the image on k3s, and running with the default config.yml which is below.

version: 0.1
log:
  fields:
    service: registry
storage:
  cache:
    blobdescriptor: inmemory
  filesystem:
    rootdirectory: /var/lib/registry
http:
  addr: :5000
  headers:
    X-Content-Type-Options: [nosniff]
health:
  storagedriver:
    enabled: true
    interval: 10s
    threshold: 3

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