Go to file
dependabot[bot] 2ba2b9f18f chore(deps): bump docker/build-push-action from 6.13.0 to 6.17.0
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6.13.0 to 6.17.0.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](ca877d9245...1dc7386353)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-version: 6.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-05-19 13:31:08 +00:00
2025-01-02 11:52:39 +01:00
2025-02-13 10:42:06 +01:00

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
Amd transcoding support for docker plex
Readme 219 KiB
Languages
Dockerfile 100%