Docker Container Installation

Learn about the docker container installation

Last published at: January 27th, 2026

 

FlowWright 10 supports running in Docker containers. To install it in a Docker container, please follow this guide.

  1.  If you don't already have Docker, download and install it from the link below.
    https://www.docker.com/products/personal/
     
  2.  Set Docker to use Windows containers.
     
  3.  Next, create a database in Microsoft SQL Server or Azure DB, then run the appropriate SQL file to populate it.
    1. FlowWrightDB-MSAzure.sql
    2. FlowWrightDB-MSSQLServer.sql
       
  4.  Record the database server name, database name, username, and password for later use.
     
  5. Open an Administrative command prompt.
     
  6. Log in to the FlowWright Azure repository using the following command. The password key will be provided:

    Docker login -u FWUser -p <PASSWORDKEY> flowwright.azurecr.io
     
  7.  Execute the following instructions to create the container:

    docker run  -d --name FW10App -p 8000:80 -e CONNSTR="Data Source=SQLSERVERNAME;Initial Catalog=DATABASENAME;User ID=USERNAME;Password=PASSWORD" flowwright.azurecr.io/flowwrightapp:latest

     
  8.  After running the command above, open Docker Desktop and verify that the container is created and running, as shown below:

     
  9.  Open the following URL in a web browser:

    http://localhost:8000
     
  10.  You should see the FlowWright login screen. Enter the following to log in:

          username: admin
          password: Flowwright10!
 

 

  1. If database connectivity and authentication are successful, you should see the FlowWright default dashboard.



     
  2. Here's a video that explains how to create and use a FlowWright Docker container.