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:
Installing DFM using our script for Linux Ubuntu, Debian, or macOS
Installing DFM on Ubuntu for detailed information on Linux Ubuntu and Debian installation
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:
Clone the Repository:
git clone https://git@github.com/DynFi/dynfi-manager-docker.git
cd dynfi-manager-docker
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.
Stopping and Restarting:
To stop the containers without removing them, use:
docker-compose down
To start them again, run:
docker-compose up
Completely Remove the Containers:
If you want to remove the containers, networks, and associated data, run:
docker-compose down --volumes --remove-orphans