mirror of
https://github.com/qurator-spk/ocrd-galley.git
synced 2025-06-09 22:59:53 +02:00
🐳 run-docker-hub-update: Update to the latest containers
This commit is contained in:
parent
12a305242f
commit
9d42de5da4
2 changed files with 14 additions and 0 deletions
|
@ -29,6 +29,9 @@ It's easiest to use it as pre-built containers. To run the containers on an
|
||||||
example workspace:
|
example workspace:
|
||||||
|
|
||||||
~~~
|
~~~
|
||||||
|
# Update to the latest stable containers
|
||||||
|
~/devel/my_ocrd_workflow/run-docker-hub-update
|
||||||
|
|
||||||
# Download an example workspace
|
# Download an example workspace
|
||||||
cd /tmp
|
cd /tmp
|
||||||
wget https://qurator-data.de/examples/actevedef_718448162.first-page.zip
|
wget https://qurator-data.de/examples/actevedef_718448162.first-page.zip
|
||||||
|
|
11
run-docker-hub-update
Executable file
11
run-docker-hub-update
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue