From 1c30bda2212def00f1561d978f077f3c80867694 Mon Sep 17 00:00:00 2001 From: victor Date: Sun, 7 Sep 2025 17:54:38 +0200 Subject: [PATCH] style(campfire): format environment variables for better readability in Docker Compose file --- templates/compose/once-campfire.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/templates/compose/once-campfire.yaml b/templates/compose/once-campfire.yaml index 699533689..ea9a6aecc 100644 --- a/templates/compose/once-campfire.yaml +++ b/templates/compose/once-campfire.yaml @@ -14,13 +14,13 @@ services: volumes: - campfire-storage:/rails/storage environment: - SECRET_KEY_BASE: ${SECRET_KEY_BASE} # required, set this to a secure random value - VAPID_PUBLIC_KEY: ${VAPID_PUBLIC_KEY} # optional, for notifications - VAPID_PRIVATE_KEY: ${VAPID_PRIVATE_KEY} # optional, for notifications - DISABLE_SSL: ${DISABLE_SSL-true} # uncomment to disable SSL - SSL_DOMAIN: ${SSL_DOMAIN-false} # optional, for SSL - SKIP_TELEMETRY: ${SKIP_TELEMETRY-true} # optional, set to disable telemetry - SENTRY_DSN: ${SENTRY_DSN} # optional, for error reporting + SECRET_KEY_BASE: ${SECRET_KEY_BASE} # required, set this to a secure random value + VAPID_PUBLIC_KEY: ${VAPID_PUBLIC_KEY} # optional, for notifications + VAPID_PRIVATE_KEY: ${VAPID_PRIVATE_KEY} # optional, for notifications + DISABLE_SSL: ${DISABLE_SSL-true} # uncomment to disable SSL + SSL_DOMAIN: ${SSL_DOMAIN-false} # optional, for SSL + SKIP_TELEMETRY: ${SKIP_TELEMETRY-true} # optional, set to disable telemetry + SENTRY_DSN: ${SENTRY_DSN} # optional, for error reporting healthcheck: test: ["CMD", "curl", "-f", "http://localhost/up"] interval: 10s