Script to build docker images for Tabula releases using Eclipse Temurin.
First time, create and run the container (1.2.1 is the last available version):
docker run \
--name tabula \
-p 5000:5000 \
-d \
turicas/tabula:1.2.1
Then, access localhost:5000.
To stop:
docker stop tabula
Start again:
docker start tabula
You can change java
's -Xms
and -Xmx
values and binding port by passing
environment variables:
docker run \
--name tabula \
-p 5001:5001 \
-e PORT=5001 \
-e JAVA_XMS="256M" \
-e JAVA_XMX="1024M" \
-d \
turicas/tabula:1.2.1
./build.sh [git_tag]
The script can build only Tabula releases with a JAR available.
Some of the old versions are raising java.lang.ExceptionInInitializerError
when started (this was not fixed in these images).