A container registry that uses the AT Protocol for manifest storage and S3 for blob storage.
atcr.io
docker
container
atproto
go
1package main
2
3import (
4 "path/filepath"
5 "runtime"
6)
7
8// projectRoot returns the absolute path to the repository root,
9// derived from the compile-time source file location.
10func projectRoot() string {
11 _, thisFile, _, _ := runtime.Caller(0)
12 return filepath.Join(filepath.Dir(thisFile), "..", "..")
13}