Update README.md

This commit is contained in:
hexeth 2022-10-07 20:30:17 -07:00 committed by GitHub
parent ff79f6131c
commit 25786eb58c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,9 @@ A Plex Media Server docker container that enables VAAPI support for AMDGPU hardw
This image uses [Linuxserver/Plex](https://hub.docker.com/r/linuxserver/plex) as its base image to ensure that Plex stays up-to-date 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 ## Usage
See [Linuxserver's Parameters](https://github.com/linuxserver/docker-plex#Parameters) for more information on parameters.
`VERSION=docker` must be used. Using `latest` will create errors.
``` docker-compose ``` docker-compose
services: services:
@ -30,10 +33,11 @@ services:
- TZ=${TZ} - TZ=${TZ}
- PLEX_CLAIM=${YOUR_PLEX_CLAIM} - PLEX_CLAIM=${YOUR_PLEX_CLAIM}
- ADVERTISE_IP=http://${YOUR_IP}:32400 - ADVERTISE_IP=http://${YOUR_IP}:32400
- ALLOWED_NETWORKS=${ - ALLOWED_NETWORKS=${YOUR_NETWORK}
- HOSTNAME=${YOUR_HOST_NAME} - HOSTNAME=${YOUR_HOST_NAME}
- VERSION=docker - VERSION=docker
volumes: volumes:
- ./config:/config - ./config:/config
- /dev/shm:/transcode - /dev/shm:/transcode
- /your/media:/your/media
``` ```