A container registry that uses the AT Protocol for manifest storage and S3 for blob storage. atcr.io
docker container atproto go
at main 23 lines 394 B view raw
1package main 2 3import ( 4 "os" 5 6 "github.com/spf13/cobra" 7) 8 9var rootCmd = &cobra.Command{ 10 Use: "upcloud", 11 Short: "ATCR infrastructure provisioning tool for UpCloud", 12 SilenceUsage: true, 13} 14 15func init() { 16 rootCmd.PersistentFlags().StringP("token", "t", "", "UpCloud API token (env: UPCLOUD_TOKEN)") 17} 18 19func main() { 20 if err := rootCmd.Execute(); err != nil { 21 os.Exit(1) 22 } 23}