4. Installing DFM using Docker

4.1. Introduction

DynFi Manager can be installed using a script Installing DFM using our script or using Docker. Below, we describe how to proceed with the Docker installation.

DFM can also be installed using these methods:

Note

DynFi Manager can be downloaded and installed for free, allowing you to manage 1 to 3 devices – with most software features.

Note

If you want to manage more than 3 devices, please consider buying a license.

4.2. Quick Start

To get started with the installation of DynFi Manager on Docker, follow these steps:

  1. Clone the Repository:

git clone https://git@github.com/DynFi/dynfi-manager-docker.git
cd dynfi-manager-docker
  1. Start the Services:

Run the following command to build and start the containers:

docker-compose up

After a brief moment, you should be able to access the application at https://0.0.0.0:9090 or https://localhost:9090.

  1. Stopping and Restarting:

To stop the containers without removing them, use:

docker-compose down

To start them again, run:

docker-compose up
  1. Completely Remove the Containers:

If you want to remove the containers, networks, and associated data, run:

docker-compose down --volumes --remove-orphans