@@ -34,10 +34,10 @@ make build
3434### Container Image
3535
3636``` bash
37- # Pull from GitHub Container Registry
38- podman pull ghcr.io/dotindustries /ocsp-responder:latest
37+ # Pull from Azure Container Registry
38+ podman pull dotinc.azurecr.io /ocsp-responder:latest
3939# or with Docker
40- docker pull ghcr.io/dotindustries /ocsp-responder:latest
40+ docker pull dotinc.azurecr.io /ocsp-responder:latest
4141```
4242
4343Or build locally (Podman recommended for better caching):
@@ -232,7 +232,7 @@ Run with Podman (recommended):
232232``` bash
233233podman run -p 8080:8080 \
234234 -v /path/to/certs:/certs:ro,Z \
235- ghcr.io/dotindustries /ocsp-responder:latest \
235+ dotinc.azurecr.io /ocsp-responder:latest \
236236 -issuer /certs/ca.pem \
237237 -responder /certs/ocsp.pem \
238238 -key /certs/ocsp-key.pem \
@@ -244,7 +244,7 @@ Or with Docker:
244244``` bash
245245docker run -p 8080:8080 \
246246 -v /path/to/certs:/certs:ro \
247- ghcr.io/dotindustries /ocsp-responder:latest \
247+ dotinc.azurecr.io /ocsp-responder:latest \
248248 -issuer /certs/ca.pem \
249249 -responder /certs/ocsp.pem \
250250 -key /certs/ocsp-key.pem \
@@ -300,7 +300,7 @@ Releases are automated via GitHub Actions. To create a release:
3003002 . GitHub Actions will automatically:
301301 - Build binaries for Linux, macOS, and Windows (amd64/arm64)
302302 - Create GitHub release with artifacts
303- - Build and push container image to GitHub Container Registry (using Podman)
303+ - Build and push container image to Azure Container Registry (using Podman)
304304
305305For local testing:
306306
0 commit comments