IronSecureDoc License Keys
How to Get a License Key
Adding an IronSecureDoc license key allows you to use the product without restrictions and watermarks.
You can buy a license here or sign up for a free 30 day trial key here.
Apply a license key in IronSecureDoc
Before proceeding
Docker images for IronSecureDoc are avaiable from DockerHub. You can use Docker commands to start and stop IronSecureDoc for testing or development.
Pull and Start the container
Install Docker. Visit Get Docker to install Docker for your environment.
If using Docker Desktop, make sure to allocate at least 4GB of memory. You can adjust memory usage in Docker Desktop by going to Settings > Resources.
Pull the IronSecureDoc Docker image.
docker pull ironsoftwareofficial/ironsecuredoc
YAMLStart a IronSecureDoc container.
Replace your IronSecureDoc license key with the argument for
IronSecureDoc_LicenseKey
. If you do not have one yet, Get a Free Trial License Key today.docker run --name ironsecuredoc -p 8080:80 -e IronSecureDoc_LicenseKey=YOUR_LICENSE_KEY
YAMLTips
If you have limited memory avaiable on the host, use the -m flag to set a memory limit for the container:-m 2GB
Make a ping-pong REST API call to SecureDoc to ensure the SecureDoc container is running.
curl http://localhost:8080/v1/document-services/check-license/
CURLShould return Ok:
200
.