Containerfile and Dockerfile for starting a tabula container, accessible through a web browser. You either use it with podman or docker (see here for inspiration).
Manual when using podman on a raspberry pi 5
-
Make sure podman is installed
-
create a directory to store the Dockerfile or Containerfile from this Repo OR just clone the repo directly without creating a new directory
mkdir tabula-pdf
git clone https://github.com/e-normous/tabula-docker-podman.git
-
change into that newly created directory OR the cloned directory
cd tabula-pdf
cd tabula-docker-podman
-
build the image (e.g. with podman)
podman build . -t tabula-pdf-image
-
after building was successful, start the container (in detached mode and exposing port 8505 as EXPOSED in the Containerfile)
podman run -d -p 8505:8080 tabula-pdf-image
-
use the web application