🐳 run-docker-hub-update: Update to the latest containers

This commit is contained in:
Gerber, Mike 2020-09-25 17:46:55 +02:00
parent 12a305242f
commit 9d42de5da4
2 changed files with 14 additions and 0 deletions

11
run-docker-hub-update Executable file
View file

@ -0,0 +1,11 @@
#!/bin/sh
# Update the my_ocrd_workflow containers
DOCKER_IMAGE_PREFIX=mikegerber/my_ocrd_workflow
DOCKER_IMAGE_TAG=stable
sub_images=`ls -1 Dockerfile-* | sed 's/Dockerfile-//'`
for x in $sub_images; do
docker pull $DOCKER_IMAGE_PREFIX-$x:$DOCKER_IMAGE_TAG
done