mirror of
https://github.com/skjnldsv/docker-plex.git
synced 2025-09-15 00:29:58 +02:00
13e6b36997e44065cd8d0dd548307950a4373001
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
A linuxserver plex image that supports AMD transcoding
Easy as it sounds, just see the linuxserver docs: https://docs.linuxserver.io/images/docker-plex/
Use the image ghcr.io/skjnldsv/docker-plex:nightly
.
Also make sure you pass your amd device like so:
devices:
- /dev/dri:/dev/dri
Full example
version: "3.7"
services:
plex:
image: ghcr.io/skjnldsv/docker-plex:nightly
restart: unless-stopped
container_name: plex
ports:
# Default access
- target: 32400
published: 32400
mode: host
# https://support.plex.tv/articles/201543147-what-network-ports-do-i-need-to-allow-through-my-firewall/
# Plex Home Theater control
- 8324:8324/tcp
# GDM discovery
- 32410:32410/udp
- 32412:32412/udp
- 32413:32413/udp
- 32414:32414/udp
environment:
- TZ=Europe/Berlin
- VERSION=docker
devices:
- /dev/dri:/dev/dri
volumes:
- /mnt/config:/config
- /mnt/storage:/storage
Description
Languages
Dockerfile
100%