Invalid interpolation format for services.db.environment.MYSQL_ROOT_PASSWORD

Hi everybody,

I have deploy an application on Linux RedHat and everything went well untill Docker-compose up --detach
i get invalid interpolation format for services.db.environment.MYSQL_ROOT_PASSWORD.
error and i dont know which file i should edit.

i really appreciate the help!
cheers,

The yaml keys in the error message are represented in a flattened notation:

services:
...
  db:
   ...
    environment:
      ..
      MYSQL_ROOT_PASSWORD: somevalue${somethng that causes the error?}
      ..
...

Hi meyay,

thank you so much i found the error as you said it was in yaml i gave the value and replace the err

have a nice one!