Skip to content

ptoulouse/docker-logitechmediaserver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

WARNING : THIS REPOSITORY IS DEPRECATED - I am now using lmscommunity/logitechmediaserver

Docker Container for Logitech Media Server

This Docker Container runs Logitech Media Server. It is based on the container created by larks. It was modified to run version 7.9.2 nightly of the server.

Usage

You will find below examples of how to start the container.

docker

docker run -d \
  --name=lms \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=America/Toronto \
  -p 9000:9000 \
  -p 9090:9090 \
  -p 3483:3483 \
  -p 3483:3483/udp \
  -p 4070:4070 \
  -v <path to music>:/music \
  -v <path to data>:/config \
  --restart unless-stopped \
  ptoulouse/logitechmediaserver

docker-compose

version: '3'
services:
  lms:
    image: ptoulouse/logitechmediaserver
    container_name: lms
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/Toronto
    ports:
      - 3483:3483
      - 3483:3483/udp
      - 9000:9000
      - 9090:9090
      - 4070:4070
    volumes:
      - <path to music>:/music
      - <path to data>:/config
    restart: unless-stopped
    # uncomment the following lines if using the MusicIP Container
    # depends_on :
    #   - musicip
    # Some plugins require the container to run in host mode (e.g. Spotty,
    # Shairtunes 2W). Uncomment the following line if required.
    # network_mode: "host"

Parameters

Parameter Description
-p 9000:9000 Port used to access the server WebUI.
-p 9090:9090 Port used to access the server CLI.
-p 3443:3443 Control channel between the players and the server.
-p 3443:3443/udp For players/server discovery.
-p 4070:4070 Spotify port.
-e PUID=1000 The server will run with that user ID.
-e PGID=1000 The server will run with that group ID.
-e TZ=America/Toronto Specify your timezone.
-v <path to music>:/music Specify where your music files resides.
-v <path to data>:/config Specify where the library, logs and preferences will be saved.

About

Docker container for Logitech Media Server

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published