Synthic is a .NET Blazor application used to automate downloading music compilations from Youtube with an advanced metadata editor
Follow these steps to clone the repository, build the Docker image, and run the application in a Docker container:
Clone the repository using the following command:
git clone https://github.com/ErikDombi/Synthic.gitNavigate to the cloned repository:
cd SynthicBuild the Docker image using the following command:
docker build -t synthic .This command will build a Docker image named synthic using the Dockerfile in the current directory.
Run the Docker container using the following command:
docker run -d --name synthic_container -p 80:80 -p 443:443 synthicThis command will run the Docker container in detached mode and map ports 80 and 443 from your host to the container.
Open your browser and navigate to http://localhost to access the application.
To stop and remove the running Docker container, use the following command:
docker rm -f synthic_container