From 16b0c6809475cfc820c797691fb17307cd69db30 Mon Sep 17 00:00:00 2001 From: Mary Dickson Date: Fri, 26 Jun 2026 09:51:19 -0700 Subject: [PATCH] fix(docs): align quickstart PQC keygen and config with nightly platform image The quickstart docker-compose pinned the keygen source and config download to service/v0.16.0 while using the nightly platform image. After opentdf/platform#3563 changed the hybrid key PEM format, the nightly image can no longer load keys generated by the v0.16.0 keygen, causing a 502 on /healthz. Switch both refs to main so they stay in sync with the nightly image. Closes #352 Co-Authored-By: Claude Opus 4.6 (1M context) Signed-off-by: Mary Dickson --- docs/getting-started/docker-compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/docker-compose.yaml b/docs/getting-started/docker-compose.yaml index fde0e988..62924508 100644 --- a/docs/getting-started/docker-compose.yaml +++ b/docs/getting-started/docker-compose.yaml @@ -344,7 +344,7 @@ services: depends_on: init-volumes: condition: service_completed_successfully - command: ['wget', '-O', '/configs/opentdf.yaml', 'https://raw.githubusercontent.com/opentdf/platform/service/v0.16.0/opentdf-example.yaml'] + command: ['wget', '-O', '/configs/opentdf.yaml', 'https://raw.githubusercontent.com/opentdf/platform/main/opentdf-example.yaml'] restart: "no" # Patch platform configuration to use keycloak.opentdf.local:9443 @@ -554,7 +554,7 @@ services: echo "service/go.sum" >> .git/info/sparse-checkout echo "protocol/" >> .git/info/sparse-checkout echo "sdk/" >> .git/info/sparse-checkout - git pull --depth 1 -q origin service/v0.16.0 + git pull --depth 1 -q origin main cd service GOWORK=off go run ./cmd/keygen -output /keys echo "PQC keys generated successfully"