From 410208680341ab1925ddc4cb1cc5a009f5dbe560 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Tue, 23 Sep 2025 20:21:56 +0200 Subject: [PATCH] Do not put the initial admin key env into the docker compose templates This is an feature for advanced users only and will risk secret leaking --- docs/installation/installation_docker.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/docs/installation/installation_docker.md b/docs/installation/installation_docker.md index cf0039f7..232633ab 100644 --- a/docs/installation/installation_docker.md +++ b/docs/installation/installation_docker.md @@ -75,11 +75,6 @@ services: # Use gravatars for user avatars, when user has no own avatar defined - USE_GRAVATAR=0 - # Automatically create an admin API token during database setup (useful for CI/CD pipelines) - # Generate a 64-character random string with: openssl rand -hex 32 - # The token will be available as: Bearer tcp_ - #- INITIAL_ADMIN_API_KEY=your_64_character_random_string_here - # Override value if you want to show a given text on homepage. # When this is empty the content of config/banner.md is used as banner #- BANNER=This is a test banner
with a line break @@ -151,11 +146,6 @@ services: # However you can add add any other environment configuration you want here # See .env file for all available options or https://docs.part-db.de/configuration.html - # Automatically create an admin API token during database setup (useful for CI/CD pipelines) - # Generate a 64-character random string with: openssl rand -hex 32 - # The token will be available as: Bearer tcp_ - #- INITIAL_ADMIN_API_KEY=your_64_character_random_string_here - # Override value if you want to show to show a given text on homepage. # When this is outcommented the webUI can be used to configure the banner #- BANNER=This is a test banner
with a line break