From f2e53d002187532dadf4f02acdee8eaa7a0b9f9e Mon Sep 17 00:00:00 2001 From: Sam Oehlert Date: Wed, 28 Jan 2026 14:41:36 -0600 Subject: [PATCH 1/3] refactor(vault): remove hardcoded dependency on vault --- compose.override.production.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.override.production.yml b/compose.override.production.yml index a3392fc7..ae8ffe24 100644 --- a/compose.override.production.yml +++ b/compose.override.production.yml @@ -18,7 +18,7 @@ services: env_file: - ./.envs/.production/.django - ./.envs/.production/.postgres - - /etc/vault.d/secrets/kv_root_security.env + - ${SECRETS_FILE:-/dev/null} volumes: - ./staticfiles:/staticfiles healthcheck: From cbaecb962233837ae4a76ced809201d923338ad4 Mon Sep 17 00:00:00 2001 From: Sam Oehlert Date: Wed, 28 Jan 2026 14:48:19 -0600 Subject: [PATCH 2/3] fix(secrets-file): oops they changed the format on making something optional https://github.com/compose-spec/compose-spec/pull/448/changes --- compose.override.production.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compose.override.production.yml b/compose.override.production.yml index ae8ffe24..7bb1335b 100644 --- a/compose.override.production.yml +++ b/compose.override.production.yml @@ -18,7 +18,8 @@ services: env_file: - ./.envs/.production/.django - ./.envs/.production/.postgres - - ${SECRETS_FILE:-/dev/null} + - '/etc/vault.d/secrets/kv_root_security.env' + required: false volumes: - ./staticfiles:/staticfiles healthcheck: From f67239c8438b13ac20f7a3c2298e09c87bdad018 Mon Sep 17 00:00:00 2001 From: crankynetman Date: Thu, 29 Jan 2026 08:17:13 -0600 Subject: [PATCH 3/3] ci: run again please