Title logo
linuxserver/beets.

A Beets container, brought to you by LinuxServer.io.

49,782,795 155 amd64 arm64

Build Information

General build information for this image

Docker Hub linuxserver/beets
Build Time 04 May 2024 11:09:11
Base Image lsiobase/alpine:3.11
Category Media
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 1.6.0-ls217 19 Apr 2024 at 18:43:41
nightly nightly-version-329098a0 04 May 2024 at 11:09:11

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  beets:
    image: linuxserver/beets:1.6.0-ls217
    container_name: beets
    restart: unless-stopped
    environment:
      - TZ # Specify a timezone to use EG Europe/London.
      - PUID # ID of user to take ownership of application/files
      - PGID # GID of user to take ownership of application/files
    volumes:
      - /host/path/to/music:/music # Music library
      - /host/path/to/downloads:/downloads # Non processed music
      - /host/path/to/config:/config # Configuration files.
    ports:
      - 8337:8337/tcp # Application WebUI

CLI

docker create \
  --name=beets \
  -e TZ `# Specify a timezone to use EG Europe/London.` \
  -e PUID `# ID of user to take ownership of application/files` \
  -e PGID `# GID of user to take ownership of application/files` \
  -v /host/path/to/music:/music `# Music library` \
  -v /host/path/to/downloads:/downloads `# Non processed music` \
  -v /host/path/to/config:/config `# Configuration files.` \
  -p 8337:8337/tcp `# Application WebUI` \
  --restart unless-stopped \
  linuxserver/beets:1.6.0-ls217