Warn if env vars from .env
are not threaded via environment
stanza
#530
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
If
FOO=...
in the.env
is there butIs not. This means
FOO
will never make it into the container.We'd need to take care to only compare what is uncommented in the env var and what is merged together from all the stanzas and
$COMPOSE_FILE
entries. I believe the docker libs do this for us and we can make a simple comparison.Again, UI/UX is a question that I don't have a good answer for. Where should this end up being shown?
New people run into this situation often while picking things up.
I think we already have a warning for variables which aren't defined during
abra app deploy
, could we show this kind of warning there too?