docker --format {{ .Name }}
Hello,
how to escape {{ }} from taskfile to use a variable like define using for example docker format ?
vars:
CONTAINERS:
sh:
docker ps --format "{{ .Names }}"
Taskfile is evaluating {{ .Names }} and I cannot find a clean way to escape {{ and }}3 Replies
My workaround right now it to use
Thx, clever workaround. I will also try this for my problem.
I think this does the trick: