Install Matchering Inside Docker Container in Linux

Install Matchering Inside Docker Container in Linux

Matchering is a web-based application for audio matching and mastering. It uses algorithms to analyze the audio track characteristics and apply respective processing techniques to enhance its sound quality.

This tutorial explains how to install Matchering inside a Docker container in the Linux. Commands have been tested on Ubuntu.

Prepare environment

Make sure you have installed Docker in your system. If you are using Ubuntu, installation instructions can be found in the post.

Install Matchering

  • Host network

Run the following command to create a container for Matchering that uses host network:

docker run -d --name=matchering --restart=always --network=host \
    -v /opt/matchering/data:/app/data \
    sergree/matchering-web
  • User-defined bridge network

User-defined bridge network can be used for listening on different port. By default, Matchering service is listening on port 8360. It can be changed with -p option.

docker network create app-net
docker run -d --name=matchering --restart=always --network=app-net \
    -p 8080:8360 \
    -v /opt/matchering/data:/app/data \
    sergree/matchering-web

Testing Matchering

To access web UI, open a web browser and go to http://<IP_ADDRESS>:8360, where <IP_ADDRESS> is the IP address of the system.

Matchering Inside Docker Container in Linux

Uninstall Matchering

To completely remove Matchering, remove its container:

docker rm --force matchering

Remove Matchering image:

docker rmi sergree/matchering-web

You can also remove Matchering data:

sudo rm -rf /opt/matchering

If a user-defined bridge network was created, you can delete it as follows:

docker network rm app-net

Leave a Comment

Cancel reply

Your email address will not be published.