A container registry that uses the AT Protocol for manifest storage and S3 for blob storage. atcr.io
docker container atproto go
81
fork

Configure Feed

Select the types of activity you want to include in your feed.

need to also update the docker images

+4 -4
+1 -1
Dockerfile.appview
··· 1 1 # Production build for ATCR AppView 2 2 # Result: ~30MB scratch image with static binary 3 - FROM docker.io/golang:1.25.7-trixie AS builder 3 + FROM docker.io/golang:1.26.2-trixie AS builder 4 4 5 5 ENV DEBIAN_FRONTEND=noninteractive 6 6
+1 -1
Dockerfile.dev
··· 1 1 # Development image with Air hot reload 2 2 # Build: docker build -f Dockerfile.dev -t atcr-dev . 3 3 # Run: docker run -v $(pwd):/app -p 5000:5000 atcr-dev 4 - FROM docker.io/golang:1.25.7-trixie 4 + FROM docker.io/golang:1.26.2-trixie 5 5 6 6 ARG AIR_CONFIG=.air.toml 7 7
+1 -1
Dockerfile.hold
··· 1 - FROM docker.io/golang:1.25.7-trixie AS builder 1 + FROM docker.io/golang:1.26.2-trixie AS builder 2 2 3 3 # Build argument to enable Stripe billing integration 4 4 # Usage: docker build --build-arg BILLING_ENABLED=true -f Dockerfile.hold .
+1 -1
Dockerfile.scanner
··· 1 - FROM docker.io/golang:1.25.7-trixie AS builder 1 + FROM docker.io/golang:1.26.2-trixie AS builder 2 2 3 3 ENV DEBIAN_FRONTEND=noninteractive 4 4