Skip to main content

How to Setup an Offline License Server

info

If you want to host your own offline license server, it is simple to do and requires only a couple steps.

Where to Get the License Server

The offline license server is a Docker image that can be pulled from the Apryse ECR Registry. The image is called public.ecr.aws/apryse/fluent-offline-license-server.

How to Setup the License Server

Setting up the license server is very simple and can be completed with the docker compose command.

Here is an example of a docker-compose.yml file that can be used to run the license server:

version: '4'
services:
fluent-offline-license-server:
container_name: offline-license-server
image: public.ecr.aws/apryse/fluent-offline-license-server:{version}
user: root
ports:
- "8080:8080"
volumes:
- data-volume:/data/offline-license-server-data
volumes:
data-volume:
note

Replace {version} with the version of the license server you want to use. You can find the latest version on the Apryse ECR Registry.

Save the above code as docker-compose.yml and run the following command in the same directory:

docker compose up -d

You have now successfully set up the offline license server!