You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The docker compose since version 2.24.0 has a new syntax
As of Docker Compose version 2.24.0, you can set your .env file, defined by the env_file attribute, to be optional by using the required field. When required is set to false and the .env file is missing, Compose silently ignores the entry.
env_file:
path: ./default.env
required: true # default
path: ./override.env
required: false
so
katenary convert docker-compose.yml
validating docker-compose.yml: services.portal.env_file.0 must be a string
The text was updated successfully, but these errors were encountered:
As explained in #102, the compose-go package changes types and needs
massive changes.
This branches is OK for now, but needs some tests.
It MUST be quickly fixed to be integrated in main branch.
Hi!
The docker compose since version 2.24.0 has a new syntax
so
The text was updated successfully, but these errors were encountered: