From 6a1cab842c3ed4fd2ef90353937ed608bc9d0349 Mon Sep 17 00:00:00 2001 From: Adrianna Wenz Date: Mon, 21 Oct 2024 14:09:19 -0400 Subject: [PATCH] Update compose.yaml to use test password directly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The current output errors because it is referring to an environment variable which is not set. Here, we remove the environment variable to use the DB test password directly, so that `sudo docker compose up` works directly without additional configuration. ``` WARN[0000] The "picco123" variable is not set. Defaulting to a blank string. [+] Running 0/3 ⠙ mysql Pulling 0.2s ⠙ web-ui Pulling 0.2s [+] Running 0/3e-api Pulling 0.2s ⠹ mysql Pulling 0.3s ⠹ web-ui Pulling 0.3s ⠹ spurtcommerce-api Pulling 0.3s error getting credentials - err: exit status 1, out: `` ``` --- compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index 2bb8132..62be3df 100644 --- a/compose.yaml +++ b/compose.yaml @@ -33,7 +33,7 @@ services: '3306', '-u', 'root', - '-p$picco123$' + '-ppicco123$' ] timeout: 20s retries: 15