From a426db1da883b0d080debc7c2744b9a2abbf5588 Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Mon, 15 Feb 2021 14:28:37 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20wrapper:=20Fix=20docker=20image?= =?UTF-8?q?=20prefix,=20i.e.=20use=20quratorspk/ocrd-galley*?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wrapper/qurator/ocrd_galley/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrapper/qurator/ocrd_galley/cli.py b/wrapper/qurator/ocrd_galley/cli.py index 75949db..e43d0a8 100644 --- a/wrapper/qurator/ocrd_galley/cli.py +++ b/wrapper/qurator/ocrd_galley/cli.py @@ -3,7 +3,7 @@ import subprocess import sys -DOCKER_IMAGE_PREFIX = os.environ.get("DOCKER_IMAGE_PREFIX", "my_ocrd_workflow") +DOCKER_IMAGE_PREFIX = os.environ.get("DOCKER_IMAGE_PREFIX", "quratorspk/ocrd-galley") DOCKER_IMAGE_TAG = os.environ.get("DOCKER_IMAGE_TAG", "latest") LOG_LEVEL = os.environ.get("LOG_LEVEL", "INFO")