This is an automated email from the ASF dual-hosted git repository. dmeikle pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tika-docker.git
commit 9a86f5ae5529a601ae4dcb57a14565d603d57455 Author: Dave Meikle <[email protected]> AuthorDate: Thu Feb 6 05:11:39 2020 +0000 Updated with more details on tags --- README.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 44acd3c..b84e435 100644 --- a/README.md +++ b/README.md @@ -13,17 +13,28 @@ There is a minimal version, which contains only Apache Tika and it's core depend To install more languages simply update the apt-get command to include the package containing the language you required, or include your own custom packs using an ADD command. +## Available Tags + +Below are the most recent tags: + +- `latest`, `1.23`: Apache Tika Server 1.23 (Minimal) +- `latest-full`, `1.23-full`: Apache Tika Server 1.23 (Full) +- `1.22`: Apache Tika Server 1.22 (Minimal) +- `1.22-full`: Apache Tika Server 1.22 (Full) + +You can see a full set of tags for historical versions [here](https://hub.docker.com/r/apache/tika/tags?page=1&ordering=last_updated). + ## Usage You can pull down the version you would like using: - docker pull apache/tika:<version> + docker pull apache/tika:<tag> Then to run the container, execute the following command: - docker run -d -p 9998:9998 apache/tika:<version> + docker run -d -p 9998:9998 apache/tika:<tag> -Where <version> is the Apache Tika Server version - e.g. 1.23, 1.22, 1.23-full, 1.22-full. +Where <tag> is the DockerHub tag corresponding to the Apache Tika Server version - e.g. 1.23, 1.22, 1.23-full, 1.22-full. NOTE: The latest and latest-full tags are explicitly set to the latest released version when they are published.
