From ff79f6131c8b1aee36a6e578c8850e02a9693c50 Mon Sep 17 00:00:00 2001 From: hexeth <7627137+hexeth@users.noreply.github.com> Date: Fri, 7 Oct 2022 20:01:53 -0700 Subject: [PATCH] Create README.md --- README.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8e2f305 --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +## Plex Docker with AMD/VAAPI support. + +A Plex Media Server docker container that enables VAAPI support for AMDGPU hardware accelerated decoding. + +This image uses [Linuxserver/Plex](https://hub.docker.com/r/linuxserver/plex) as its base image to ensure that Plex stays up-to-date + +## Usage + +``` docker-compose +services: + plex: + image: ghcr.io/hexeth/docker-plex-amd:master + privileged: true + container_name: plex + devices: + - /dev/dri:/dev/dri + ports: + - 32400:32400 + - 3005:3005 + - 5353:5353/udp + - 8324:8324 + - 32410:32410/udp + - 32412:32412/udp + - 32413:32413/udp + - 32414:32414/udp + - 32469:32469 + environment: + - PGID=1000 + - PUID=1000 + - TZ=${TZ} + - PLEX_CLAIM=${YOUR_PLEX_CLAIM} + - ADVERTISE_IP=http://${YOUR_IP}:32400 + - ALLOWED_NETWORKS=${ + - HOSTNAME=${YOUR_HOST_NAME} + - VERSION=docker + volumes: + - ./config:/config + - /dev/shm:/transcode +```