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
The license key is a long string that ends with an expiry date. Please ensure this is copied correctly, with no spaces.
Docker images for IronSecureDoc are available from Docker Hub. 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
docker pull ironsoftwareofficial/ironsecuredoc
SHELLStart an IronSecureDoc container.
Replace
YOUR_LICENSE_KEY
with your IronSecureDoc license key. 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 ironsoftwareofficial/ironsecuredoc
docker run --name ironsecuredoc -p 8080:80 -e IronSecureDoc_LicenseKey=YOUR_LICENSE_KEY ironsoftwareofficial/ironsecuredoc
SHELLTips
If you have limited memory available 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/
curl http://localhost:8080/v1/document-services/check-license/
SHELLIt should return
Ok: 200
.