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
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 avaiable from DockerHub. You can use Docker commands to start and stop IronSecureDoc for testing or development.

Pull and Start the container

  1. 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.

  2. Pull the IronSecureDoc Docker image.

    docker pull ironsoftwareofficial/ironsecuredoc
    YAML
  3. Start 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
    YAML

    Tips
    If you have limited memory avaiable on the host, use the -m flag to set a memory limit for the container: -m 2GB

  4. 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

    Should return Ok: 200.