estimated reading time < 1 min
Musicbrainz Picard is a comprehensive tool to tag your music library. The GUI of the application is accessed through a modern web browser (no installation or configuration needed on the client side) or via any VNC client.
--- version: '2' services: picard: image: mikenye/picard container_name: picard environment: - USER_ID=1000 - GROUP_ID=100 - UMASK=0 - TZ=Asia/Bangkok - KEEP_APP_RUNNING=1 volumes: - /share/Container/container-data/picard/config:/config - /share/Media/music:/storage ports: - 5800:5800 restart: unless-stopped
Replace the volumes path, uid, gid according to your environment. This compose file is fully compatible with QNAP Container-Station.
Views: 115