Tabula PDF extraction as a dockerised application (originally from asnelling, which is out of date)
50K+
Tabula is a tool for liberating data tables trapped inside PDF files. This is a Docker image to run the web server inside a lightweight Linux container.
docker run -d -p 8080:8080 mtaylor/tabula
Now open your browser to http://localhost:8080/
You may wish to tweak the docker run command above in order to...
specify a specific version of Tabula
# Example: v0.9.3
docker run -d -p 8080:8080 mtaylor/tabula:0.9.3
listen on a different port
# Example: port 8100
docker run -d -p 8100:8080 mtaylor/tabula
Access the web interface at http://localhost:8100/
follow the logs while the container runs
docker run -p 8080:8080 mtaylor/tabula
You may find more options in the official documentation
Instead of pulling a pre-built container image from mtaylor/tabula, you may build your own using the Dockerfile in this repo:
git clone [email protected]:mattietk/tabula-docker.git
docker build -t mytabula tabula-docker
docker run -d -p 8080:8080 mytabula
Content type
Image
Digest
Size
451.3 MB
Last updated
over 7 years ago
docker pull mtaylor/tabula-docker