Skip to content

Commit 094d207

Browse files
committed
init-plex-chown/run: use TMPDIR instead of hardcoded /run/plex-temp
Changes init-plex-chown/run to use TMPDIR instead of hardcoded /run/plex-temp Plex uses TMPDIR to store transcodes of music to WAV format for music analysis (and maybe other things). LS.io container sets TMPDIR=/run/plex-temp. With read-only root this means the /run tmpfs needs to have enough memory to store music analysis transcodes. LS.io container hardcoded /run/plex-temp in init so TMPDIR could not be flexibly changed -- changed to use TMPDIR and clean on restart in case of unclean shutdown. Plex container is marked as supporting read-only root.
1 parent 2186587 commit 094d207

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,8 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
371371

372372
## Versions
373373

374+
* **15.03.26:** - Allow TMPDIR to be changed to better support read-only containers
375+
* **15.03.26:** - Fix initial claim setup on non-root containers
374376
* **04.11.24:** - Add Nvidia capability needed for h265
375377
* **18.07.24:** - Rebase to Ubuntu Noble.
376378
* **12.02.24:** - Use universal hardware acceleration blurb

root/etc/s6-overlay/s6-rc.d/init-plex-chown/run

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
#!/usr/bin/with-contenv bash
22
# shellcheck shell=bash
33

4-
mkdir -p /run/plex-temp
4+
# remove plex temporary directory after unclean stop
5+
if [[ -d "${TMPDIR}" ]]; then
6+
rm -rf "${TMPDIR}"
7+
fi
8+
mkdir -p ${TMPDIR}
59

610
# create folders
711
if [[ ! -d "${PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR}" ]]; then
@@ -40,7 +44,7 @@ if [[ -z ${LSIO_NON_ROOT_USER} ]]; then
4044

4145
# permissions (non-recursive) on config root and folders
4246
lsiown abc:abc \
43-
/run/plex-temp \
47+
"${TMPDIR}" \
4448
/config \
4549
/config/*
4650
fi

0 commit comments

Comments
 (0)