Version 3.0 of DS Server has been built with .NET 6 and is based on TX Text Control 31.0. Besides all new features of TX Text Control, it provides some extended advantages over the previous versions. One new feature is the option to host DS Server without the requirement of IIS (Internet Information Services) on the hosting instance. This tutorial shows how to deploy DS Server using Docker without any IIS dependency.

The easiest way to test the installation is to install Docker for Windows to create the DS Server Docker image.

Prerequisites

To test this deployment, you will have to download a trial or full version of DS Server. A trial version can be downloaded here:

DS Server Trial

  1. Create a new folder and name it DSServerDocker.

  2. Download the ZIP file from the online store (DS-0300-XB.zip) that contains all the required files for your private DS Server installation and copy it into the created folder DSServerDocker.

  3. Open the ZIP and find the file hostsettings.json. Change the content to the following JSON:

    Loading...

    These ULRs define on which URLs and ports DS Server is hosted. For demo purposes, the HTTPS URL is removed in this tutorial.

  4. Create a file named Dockerfile (no extension), open it using any editor and paste the following content into it:

    Loading...
  5. Assume that you have installed Docker for Windows, open a PowerShell command window with explicit administrator rights and change to the directory where you created the folder DSServerDocker.

  6. Type in the following command to build the Docker image based on the Dockerfile in the same directory:

    docker build -t dsserver .
  7. Start the container with one of the following commands:

    docker run -it -p 5000:5000 --name mydsserver dsserver
  8. Open a browser and navigate to http://localhost:5000 to open the DS Server portal.