Repeated docker save on the same image create different tar files because the current time is present in the tar file.
It would be great if docker save was deterministic because then you can easily publish sha1sums of your containers etc; currently, each docker save ... | sha1sum has a different output.
This is usually solved using tar by using its --mtime option to set the time to 0.
Repeated
docker saveon the same image create different tar files because the current time is present in the tar file.It would be great if
docker savewas deterministic because then you can easily publishsha1sums of your containers etc; currently, eachdocker save ... | sha1sumhas a different output.This is usually solved using
tarby using its--mtimeoption to set the time to 0.