Shouldn't there be a "env_file:" entry in docker-compose.yml? The default one does not have it, but the full guide in README.md assumes it is there.

Reply to this note

Please Login to reply.

Discussion

turns out we don’t need that, rename your file to `.env` and remove the `env_file:` entry on your docker-compose.yml file

Well, this didn't work out for me, so I had to add the line backup docker-compose.yml. 🤔

oh i missed something. after adding the env vars to the `.env` file, on your docker-compose.yml you must add the env vars individually like: ENV_NAME: ${ENV_NAME}

I see, like it is done with "SECRET: ${SECRET}" right?

Yes sir