From bded4bdeecf5a032ec12b0393b2e0a503a267bff Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Mon, 27 Nov 2023 11:25:22 +0100 Subject: [PATCH] Developer Guide: Update Introduction to YAML see https://github.com/photoprism/photoprism/issues/3913 --- docs/developer-guide/technologies/yaml.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer-guide/technologies/yaml.md b/docs/developer-guide/technologies/yaml.md index 8e0609037d..c558815243 100644 --- a/docs/developer-guide/technologies/yaml.md +++ b/docs/developer-guide/technologies/yaml.md @@ -78,7 +78,7 @@ services: MARIADB_PASSWORD: "compo$$e" # sets password to "compo$e" ``` -Values that contain a `$` are otherwise [interpreted as a variable](https://docs.docker.com/compose/compose-file/12-interpolation/#interpolation). In this case, both the `$VARIABLE` and the `${VARIABLE}` syntax are supported. For details, please refer to the [Docker Compose documentation](https://docs.docker.com/compose/compose-file/12-interpolation/#interpolation). +Values that contain a `$` are otherwise [interpreted as a variable](https://docs.docker.com/compose/compose-file/12-interpolation/#interpolation). In this case, both the `$VARIABLE` and the `${VARIABLE}` syntax are supported. Further details on the use of variables can be found in the [file format reference](https://docs.docker.com/compose/compose-file/12-interpolation/#interpolation). ### True / False ###