From 8b6bd3a32ddc1cf94fb2441041177b2fb58b8f46 Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Sat, 12 Nov 2022 15:36:24 -0800 Subject: [PATCH] Correct typos regarding `COMPOSE_PROFILES` Proof: ``` $ grep 'COMPOSE' dev/.env.dev COMPOSE_PROFILE=overriden_value_1 COMPOSE_PROFILES=overriden_value_2 $ make start COMPOSE_PROFILES=overriden_value_2 [...] ``` --- dev/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/README.md b/dev/README.md index adeca62e..22124f5b 100644 --- a/dev/README.md +++ b/dev/README.md @@ -41,7 +41,7 @@ This configuration option represents a comma-separated list of [`docker-compose` This option can be configured in two ways: -1. Setting a `COMPOSE_PROFILE` environment variable in `.env.dev`. This allows you to avoid having to set `COMPOSE_PROFILE` for each `make` command you execute afterwards. +1. Setting a `COMPOSE_PROFILES` environment variable in `dev/.env.dev`. This allows you to avoid having to set `COMPOSE_PROFILES` for each `make` command you execute afterwards. 2. Passing in a `COMPOSE_PROFILES` argument when running `make` commands. For example: ```bash