`DOCKER_EXPERIMENTAL_CLI`
Spineswitch opened this issue · 2 comments
Spineswitch commented
Hello @Montana,
when I try to add this part it doesnt work? any help would be greeatful!
Montana commented
One thing to remember when running: export DOCKER_CLI_EXPERIMENTAL=enabled
this only makes it valid for that runtime. To make this permanent follow the directions I've provided below.
Add experimental
: enabled
to ~/.docker/config.json
, this is the (default location) at the beginning of the file and not at the end this is an important detail that you shouldn't forget.
Then test it by running:
docker manifest inspect --insecure -v <registry_or_domain>/<image_name> | grep size | awk -F ':' '{sum+=$NF} END {print sum}' | xargs printf "%f\n" | numfmt --to=iec
This will work, hope this helps.
Spineswitch commented
thanks, @Montana this seemed to do it...