> ## Documentation Index
> Fetch the complete documentation index at: https://namespace.so/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Registry UI

export const CenteredImage = ({src, alt, width, caption, className}) => {
  const [basePath, setBasePath] = useState("");
  useEffect(() => {
    const path = window.location.pathname;
    setBasePath(path === "/docs" || path.startsWith("/docs/") ? "/docs" : "");
  }, []);
  return <Frame caption={caption} className={className} style={{
    maxWidth: width,
    marginInline: "auto"
  }}>
			<OptimizedImage src={`${basePath}${src}`} alt={alt} />
		</Frame>;
};

Our [Dashboard](https://cloud.namespace.so/workspace/registry) provides a holistic overview over the images that you have pushed to [nscr.io](/docs/architecture/storage/container-registry).
You can understand access patterns per tag, and the evolution of image sizes over time.

<CenteredImage width={600} alt="container image registry" src="/docs/images/docker-builders/registry.png" />

When looking at a single image tag, you can see the historic versions, and which are still being pulled today.
For multi-platform images, you can also understand how much each platform contributes to the combined image size.

<CenteredImage width={600} alt="multi arch image" src="/docs/images/docker-builders/registry-multi-arch.png" />
