Skip to content

GeekSquirrel/plexamp-headless-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Plexamp Docker

This repository allows building a docker image of Plexamp. Since Plexamp 4.7.0, Plexamp reads the claim and the player name from environment variables. This makes it much easier to spawn a Docker image.

version: '3'
services:

  plexamp:

    container_name: plexamp

     privileged: true
     image: ghcr.io/anatosun/plexamp:arm64v8
     devices:
        - "/dev/snd:/dev/snd"
     volumes:

        - ./config:/root/.local/share/Plexamp/Settings
 # replace that with the appropriate host binding
     environment:
        - PLEXAMP_CLAIM_TOKEN=claim-XXXXXXXXXX # get your claim at https://www.plex.tv/claim/
        - PLEXAMP_PLAYER_NAME=docker # replace this with your player name
     ports:
        - 32500:32500
        - 20000:20000
     restart: unless-stopped

About

A docker image for plexamp

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 100.0%