Skip to content

Script to build docker images for Tabula releases using Eclipse Temurin

License

Notifications You must be signed in to change notification settings

turicas/tabula-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tabula-docker

Script to build docker images for Tabula releases using Eclipse Temurin.

Running

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

Customizing

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

Building

./build.sh [git_tag]

Versions

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).

About

Script to build docker images for Tabula releases using Eclipse Temurin

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published