mirror of
https://github.com/linuxserver/docker-plex.git
synced 2026-02-05 01:58:15 +08:00
9 lines
330 B
Plaintext
9 lines
330 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
echo "Starting Plex Media Server."
|
|
export PLEX_MEDIA_SERVER_INFO_MODEL=$(uname -m)
|
|
export PLEX_MEDIA_SERVER_INFO_PLATFORM_VERSION=$(uname -r)
|
|
exec \
|
|
s6-setuidgid abc /bin/bash -c \
|
|
'LD_LIBRARY_PATH=/usr/lib/plexmediaserver:/usr/lib/plexmediaserver/lib /usr/lib/plexmediaserver/Plex\ Media\ Server'
|