According to the instructions Ways to set environment variables with Compose | Docker Docs I set up a custom variable file at my place
web:
env_file:
- web-variables.env
In my case, this file is not detected. It should be assumed that I do not want to use:
It works in the same way as
docker run --env-file=FILE ...
. Why can’t it see myweb-variables.env
file?