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
Registry | Image | Tag | Build |
---|---|---|---|
Docker-Hub | fabianbees/plexamp | latest |
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 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