eliottwiener-gridunity
eliottwiener-gridunity
This is still reproducible with Earthly 0.8.6.
I was not able to reproduce this on 0.8.9
Can obviously be worked-around by checking if the network already exists, for example: `test -n "$(docker network ls --quiet --filter=name=testnetwork)" || docker network create --internal testnetwork`
> ``` > $ earthly bootstrap --no-buildkit --source zsh > #compdef _earthly earthly > > function _earthly { > autoload -Uz bashcompinit > bashcompinit > complete -o nospace -C '/home/alex/bin/earthly-v0.7.11'...
I see. This outputs the contents of a compdef file, which is picked up by zsh to be in the `$fpath` when `compinit` is invoked. Thanks.
It would be useful for my use cases to include the service name *and* service ARN. I would want these to be included in `$ECS_CONTAINER_METADATA_URI_V4` and `$ECS_CONTAINER_METADATA_URI_V4/task`.
I have done something like this: ``` LET KEY="" LET VAL="" FOR LINE IN $(echo "foo=bar baz=quux") SET KEY=$(printf '%s' "$LINE" | cut -d= -f1) SET VAL=$(printf '%s' "$LINE" |...