docker-bins/docker_import_images

7 lines
67 B
Bash
Executable File

#!/bin/bash
IFS=$'\n'
for i in *.tar;do
docker load -i "$i"
done