From 8f85b4402f0886c823afa80a19f9162f64ddffb4 Mon Sep 17 00:00:00 2001 From: Zuri Klaschka Date: Tue, 29 Oct 2024 11:58:26 +0100 Subject: [PATCH] feat: :memo: Demonstrate inline configuration in for Docker Compose in `README.md` --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index db35797..7d2c728 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,10 @@ secrets: configs: my-service-config: - file: ./config.json # Loaded from a file + content: | + { + "key": "value" + } ``` This configuration ensures that your application variables are securely managed and validated, leveraging Docker's secrets and configs features.