Skip to content

fabianbees/docker-plexamp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Docker Container for Plexamp

https://www.plex.tv/plexamp

Docker container for Plexamp headless, see also: https://www.plex.tv/plexamp/#downloads and https://forums.plex.tv/t/plexamp-on-the-raspberry-pi/791500

Tags

Registry Image Tag Build
Docker-Hub fabianbees/plexamp latest pipeline status

Deploy via docker run

The container can be run via plain docker:

docker run -d \
    --name plexamp \
    -e PLEXAMP_CLAIM_TOKEN='your plex clain here' `# see: https://www.plex.tv/claim` \
    -e PLEXAMP_PLAYER_NAME='plexamp-docker' \
    -p 32500:32500 \
    -p 20000:20000 \
    --device "/dev/snd:/dev/snd" \
    fabianbees/plexamp:latest

NOTE: The Plexamp WebUI can be reached on Container Port 32500 (navigate to http://localhost:32500).

Deploy via docker-compose

Deploy container via docker-compose v3 schema:

git clone https://github.com/fabianbees/docker-plexamp.git

cd docker-plexamp

docker compose up
version: "3.8"
services:
  plexamp:
    image: fabianbees/plexamp:latest
    container_name: docker-plexamp
    environment:
      - PLEXAMP_CLAIM_TOKEN: "your plex clain here"  # see: https://www.plex.tv/claim
      - PLEXAMP_PLAYER_NAME: "plexamp-docker"
    ports:
      - 32500:32500
      - 20000:20000
    devices:
      - "/dev/snd:/dev/snd"
    restart: unless-stopped

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published