Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.24 KB

01_USAGE.md

File metadata and controls

43 lines (33 loc) · 1.24 KB

Usage

panosse can be used as a standalone binary or with Docker.

Standalone binary

To use panosse as a standalone binary, download the latest release from the GitHub Releases page: https://github.com/ludelafo/panosse/releases.

Important

flac and metaflac must be installed on your computer in order to use panosse. You can install them using your package manager or download them from the Xiph website.

panosse was tested with flac version 1.4.2 and metaflac version 1.4.2.

# Run panosse as a standalone binary
./panosse --help

Docker

To use panosse with Docker, pull the Docker image from GitHub Container Registry and run it as a container: https://ghcr.io/ludelafo/panosse.

Important

flac and metaflac are already installed in the Docker image. No need to install them on your computer.

# Run panosse as a Docker container
docker run --rm ghcr.io/ludelafo/panosse --help

# Run panosse as a Docker container with a volume
docker run --rm \
  --volume "$(pwd)/custom-config.yaml:/config/custom-config.yaml" \
  --volume "$(pwd):/files" \
  ghcr.io/ludelafo/panosse --config-file /config/custom-config.yaml  verify /files/file.flac