QNAP: Running MusicBrainz-Picard using Container Station

MusicBrainz-Picard is a multi-platform python application which can help you tag your music collection. It allows you search the MusicBrainz database for the information of the files you have provided based on the filename, already existing tags and the acoustic fingerprints. If you are hosting music library on your QNAP device, you can fix all the music library tags using the Picard application and stream it using the Ampache application to multiple devices in the house.

You can use the following yaml to host Picard using container station.

version: "3.8"

name: picard

services:
  picard:
    container_name: picard
    image: mikenye/picard:latest
    restart: unless-stopped
    ports:
      - "32790:5800"
      - "32791:5900"
    volumes:
      - config:/config
      - /share/CACHEDEV2_DATA/Audio:/music
    environment:
      VNC_PASSWORD: <password for login> #OPTIONAL
    network_mode: bridge

volumes:
    config:

Leave a Comment