Sign inSign up

capino/picard

By capino

•Updated over 3 years ago

Image
0

386

capino/picard repository overview

⁠capino/musicbrainz-picard⁠

MusicBrainz version 2.5.8 This docker is build using baseimage-gui:ubuntu-20.04-v4 from jlesage as base.

⁠Usage

Here are some example snippets to help you get started creating a container.

---
version: "3"
services:
  calibre:
    image: capino/musicbrainz-picard:latest
    container_name: picard
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Berlin
    volumes:
      - /path/to/data:/config
      - /path/to/music:/music
    ports:
      - 5800:5800
      - 5900:5900
    restart: unless-stopped
⁠docker cli
docker run -d \
  --name=picard \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=Europe/Berlin \
  -p 5800:5800 \
  -p 5900:5900 \
  -v /path/to/data:/config \
  -v /path/to/music:/music
  --restart unless-stopped \
  capino/musicbrainz-picard:latest

⁠Parameters

Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate <external>:<internal> respectively. For example, -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 outside the container.

ParameterFunction
-p 5800Picard desktop gui.
-p 5900Picard webserver gui.
-e PUID=1000for UserID - see below for explanation
-e PGID=1000for GroupID - see below for explanation
-e TZ=Europe/BerlinSpecify a timezone to use EG Europe/London.
-v /configWhere picard should store its database and library.
-v /musicWhere you store your music.

Tag summary

Content type

Image

Digest

sha256:a290040de…

Size

263.6 MB

Last updated

over 3 years ago

docker pull capino/picard