mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 07:53:55 -05:00
switched to linuxserver plex image with hardware acc support
This commit is contained in:
parent
275ba1e161
commit
af3f185379
|
@ -27,13 +27,16 @@
|
||||||
};
|
};
|
||||||
plex-server = {
|
plex-server = {
|
||||||
ports = ["0.0.0.0:32400:32400"];
|
ports = ["0.0.0.0:32400:32400"];
|
||||||
image = "plexinc/pms-docker:public";
|
image = "linuxserver/plex:latest";
|
||||||
environment = { TZ = "America/New_York"; };
|
environment = { TZ = "America/New_York"; };
|
||||||
volumes = [
|
volumes = [
|
||||||
"plex_config:/config"
|
"plex_config:/config"
|
||||||
"plex_transcode:/transcode"
|
"plex_transcode:/transcode"
|
||||||
"/mnt/Media:/Media"
|
"/mnt/Media:/Media"
|
||||||
];
|
];
|
||||||
|
extraOptions = [
|
||||||
|
"--device=/dev/dri:/dev/dri"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
transmission-server = {
|
transmission-server = {
|
||||||
ports = ["0.0.0.0:9091:9091" "0.0.0.0:51413:51413"];
|
ports = ["0.0.0.0:9091:9091" "0.0.0.0:51413:51413"];
|
||||||
|
|
Loading…
Reference in a new issue