Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skjnldsv/docker-plex
Amd transcoding support for docker plex
https://github.com/skjnldsv/docker-plex
Last synced: 12 days ago
JSON representation
Amd transcoding support for docker plex
- Host: GitHub
- URL: https://github.com/skjnldsv/docker-plex
- Owner: skjnldsv
- Created: 2022-05-27T14:05:13.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-11-19T14:40:00.000Z (about 1 month ago)
- Last Synced: 2024-11-19T15:35:54.372Z (about 1 month ago)
- Language: Dockerfile
- Homepage: https://docs.linuxserver.io/images/docker-plex/
- Size: 67.4 KB
- Stars: 21
- Watchers: 4
- Forks: 12
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 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:master`.
Also make sure you pass your amd device like so:```yml
devices:
- /dev/dri:/dev/dri
```### Full example
```yml
version: "3.7"services:
plex:
image: ghcr.io/skjnldsv/docker-plex:master
restart: unless-stopped
container_name: plexports:
# 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/udpenvironment:
- TZ=Europe/Berlin
- VERSION=dockerdevices:
- /dev/dri:/dev/dri
volumes:
- /mnt/config:/config
- /mnt/storage:/storage
```