From 7f4904e97a29218d9fc81b7c9f151886604fcc26 Mon Sep 17 00:00:00 2001 From: Jay Carlson Date: Mon, 25 Jul 2022 13:31:06 -0700 Subject: [PATCH] Typo: missing line in configs "short syntax" example The paragraph above says "grant the `redis` service access to the `my_config` and `my_other_config` configs." While `my_other_config` is defined, it is not added to the `redis` `configs` list. I suspect this was a merge error or something. To ensure I wasn't going crazy, I verified that at least Docker Compose v2 requires this line for the second config to be materialized inside the service. Signed-off-by: Jay Carlson --- spec.md | 1 + 1 file changed, 1 insertion(+) diff --git a/spec.md b/spec.md index 7fd2f499..fc0fcb14 100644 --- a/spec.md +++ b/spec.md @@ -458,6 +458,7 @@ services: image: redis:latest configs: - my_config + - my_other_config configs: my_config: file: ./my_config.txt