How to Pull and Run IronPdfEngine

Pulling and running an IronPdfEngine image involves fetching the pre-built container image from Dockerhub then executing it within a Docker environment.

Pulling: This refers to retrieving the IronPdfEngine container image from Docker to your local system. The docker pull command is typically used for this purpose.

Running: Once the image is pulled, you use the docker run command to launch a container instance based on that image. This starts the IronPdfEngine application within a Docker container, allowing you to utilize its functionality.

C# NuGet Library for PDF

Install with NuGet

Install-Package IronPdf
or
C# PDF DLL

Download DLL

Download DLL

Manually install into your project

Getting IronPdfEngine in Dockerhub

Prerequisite

  • Docker must be installed.

Setup

  1. Go to https://hub.docker.com/r/ironsoftwareofficial/ironpdfengine
  2. Pull the ironsoftwareofficial/ironpdfengine image
    docker pull ironsoftwareofficial/ironpdfengine

    Or pull the specific version (recommended)

    docker pull ironsoftwareofficial/ironpdfengine:2023.12.6
  3. Run the ironsoftwareofficial/ironpdfengine container. This command will create a container and run in the background with port 33350
    docker run -d -p 33350:33350 ironsoftwareofficial/ironpdfengine

IronPdfEngine inside Docker compose

The key is to set up a Docker network that allows IronPdfEngine and your application to see each other. Set 'depends_on' to ensure that IronPdfEngine is up before your application starts.

Setup

  1. Start by creating a docker-compose.yml file. Setup your Docker Compose file using the following template:

    version: "3.6"
    services:
    myironpdfengine:
    container_name: ironpdfengine
    image: ironsoftwareofficial/ironpdfengine:latest
    ports:
      - "33350:33350"
    networks:
      - ironpdf-network
    myconsoleapp:
    container_name: myconsoleapp
    build:
      # enter YOUR project directory path here
      context: ./MyConsoleApp/
      # enter YOUR dockerfile name here, relative to project directory
      dockerfile: Dockerfile
    networks:
      - ironpdf-network
    depends_on:
      myironpdfengine:
        condition: service_started
    networks:
    ironpdf-network: 
    driver: "bridge"
  2. Set the address of IronPdfEngine inside your application (myconsoleapp) to "myironpdfengine:33350"

  3. Run docker compose
    docker compose up --detach --force-recreate --remove-orphans --timestamps

Update the Code to Use IronPdfEngine

This involves modifying the code to ensure that IronPdf points to the correct port that being exposed by IronPdfEngine. This operation varies slightly for each programming language. Please refer to the following articles for specific usage instructions:

Additionally, you can deploy this container anywhere. Just don't forget to expose port 33350 and make it accessible to the IronPdf client. To learn more about IronPdfEngine and its limitations, visit the "What is IronPdfEngine?" article.