This is an automated email from the ASF dual-hosted git repository. tilman pushed a commit to branch TIKA-4406 in repository https://gitbox.apache.org/repos/asf/tika-docker.git
commit cbc1b5bab33bb325826ffff1f0e5e95b80f149fc Author: Tilman Hausherr <[email protected]> AuthorDate: Sat Apr 12 10:21:53 2025 +0200 TIKA-4406: add missing backslash --- docker-compose-tika-grobid.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose-tika-grobid.yml b/docker-compose-tika-grobid.yml index 930d382..2f64bca 100644 --- a/docker-compose-tika-grobid.yml +++ b/docker-compose-tika-grobid.yml @@ -20,7 +20,7 @@ services: tika: image: apache/tika:${TAG}-full # Override default so we can add configuration on classpath - entrypoint: [ "/bin/sh", "-c", "exec java -cp \"/grobid:/tika-server-standard-${TIKA_VERSION}.jar:/tika-extras/*" org.apache.tika.server.core.TikaServerCli -h 0.0.0.0 $$0 $$@"] + entrypoint: [ "/bin/sh", "-c", "exec java -cp \"/grobid:/tika-server-standard-${TIKA_VERSION}.jar:/tika-extras/*\" org.apache.tika.server.core.TikaServerCli -h 0.0.0.0 $$0 $$@"] # Kept command as example but could be added to entrypoint too command: -c /grobid/tika-config.xml restart: on-failure
