finaX Logo
API Reference
Guides

Self Hosting

Host the finaX E-Invoice API on your own infrastructure.

finaX provides a Docker image for self-hosting the E-Invoice API on your own infrastructure.

To download the Docker image you need a valid self-hosting license key. Please contact us at kontakt@finax.dev.

The image can be downloaded like this:

curl -sSLO https://get.keygen.sh/finax/[finax_version]/finax.api.tar.gz \
-u "license:<YOUR_LICENSE_KEY>"

docker load < finax.api.tar.gz
# => Loaded image: finax/api:[finax_version]
The current version of the finaX invoicing API can be retrieved from https://docs.finax.dev/api-version

The image is now available on your machine - you can check this with:

docker image ls | grep finax

The service in the container runs on port 8000. You can map this to any port on your machine. For example, to map it to port 8080 you can use the following command:

docker run -p 8080:8000 finax/api:[finax_version]