This is an automated email from the ASF dual-hosted git repository.
tilman pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika-docker.git
The following commit(s) were added to refs/heads/main by this push:
new af65a51 TIKA-4406: add missing backslash (#26)
af65a51 is described below
commit af65a514dcac3efcd9497bf0a3e795914cbd24a1
Author: Tilman Hausherr <[email protected]>
AuthorDate: Sat Apr 12 10:26:11 2025 +0200
TIKA-4406: add missing backslash (#26)
* TIKA-4406: add missing backslash
* TIKA-4406: add missing backslash
---
docker-compose-tika-customocr.yml | 4 ++--
docker-compose-tika-grobid.yml | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/docker-compose-tika-customocr.yml
b/docker-compose-tika-customocr.yml
index e887d05..858323b 100644
--- a/docker-compose-tika-customocr.yml
+++ b/docker-compose-tika-customocr.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
\"/customocr:/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
\"/customocr:/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 /tika-config.xml
restart: on-failure
@@ -31,4 +31,4 @@ services:
# - ./sample-configs/customocr/tika-config-inline.xml:/tika-config.xml
- ./sample-configs/customocr/tika-config-rendered.xml:/tika-config.xml
-
\ No newline at end of file
+
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