From 482f7ee4733d6febbd12611d8e5f291689f4ffd2 Mon Sep 17 00:00:00 2001 From: b-long Date: Mon, 22 Dec 2025 15:28:20 -0500 Subject: [PATCH 1/3] fix(docs): update docker cp commands to use docker compose --- docs/getting-started/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/index.mdx b/docs/getting-started/index.mdx index 3659b8f2..13efbd1e 100644 --- a/docs/getting-started/index.mdx +++ b/docs/getting-started/index.mdx @@ -73,11 +73,11 @@ mkdir -p ./opentdf-certs ``` ```shell -docker cp opentdf-caddy-1:/data/caddy/certificates/local/keycloak.opentdf.local/keycloak.opentdf.local.crt ./opentdf-certs +docker compose cp caddy:/data/caddy/certificates/local/keycloak.opentdf.local/keycloak.opentdf.local.crt ./opentdf-certs ``` ```shell -docker cp opentdf-caddy-1:/data/caddy/certificates/local/platform.opentdf.local/platform.opentdf.local.crt ./opentdf-certs +docker compose cp caddy:/data/caddy/certificates/local/platform.opentdf.local/platform.opentdf.local.crt ./opentdf-certs ``` ### Import and Trust Certificates by Operating System From dfc46323c55df378fbd9cdb04a1952d44f2b709b Mon Sep 17 00:00:00 2001 From: b-long Date: Mon, 22 Dec 2025 14:06:46 -0500 Subject: [PATCH 2/3] chore: move CSS to stylesheet --- docs/getting-started/index.mdx | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/docs/getting-started/index.mdx b/docs/getting-started/index.mdx index 13efbd1e..76e62acd 100644 --- a/docs/getting-started/index.mdx +++ b/docs/getting-started/index.mdx @@ -5,6 +5,21 @@ slug: /getting-started import dockerComposeContent from '!!raw-loader!./docker-compose.yaml'; import CodeBlock from '@theme/CodeBlock'; + + # Getting Started This guide will walk you through setting up a new platform locally and walk you through some of the basic concepts within the OpenTDF platform. @@ -34,7 +49,7 @@ The first step is to get the platform running locally. You can use the following Not for production use. ::: -Download docker-compose.yaml +Download docker-compose.yaml
Docker Compose From 407837996cf2c64c513e7185b02a86bf4e38497f Mon Sep 17 00:00:00 2001 From: b-long Date: Mon, 22 Dec 2025 15:49:18 -0500 Subject: [PATCH 3/3] chore: improve CSS slightly --- docs/getting-started/index.mdx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/getting-started/index.mdx b/docs/getting-started/index.mdx index 76e62acd..4126b964 100644 --- a/docs/getting-started/index.mdx +++ b/docs/getting-started/index.mdx @@ -15,6 +15,13 @@ import CodeBlock from '@theme/CodeBlock'; text-decoration: none; border-radius: 4px; margin-bottom: 16px; + transition: all 0.2s ease; +} + +.download-button:hover { + background-color: #0052a3; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); + color: white; } `}