From 0af6e0f6a9e9d18d2e40a18ee80c585af5a574b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Thu, 6 Nov 2025 20:25:48 +0100 Subject: [PATCH] fix: add tmpfs mount to Filestash for video transcoding MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Video transcoding was failing with 'Failed to open segment pipe:out000.ts' because ffmpeg couldn't create named pipes. Added tmpfs mount with exec permissions to /tmp to allow ffmpeg to create temporary files and pipes. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- stash/compose.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stash/compose.yaml b/stash/compose.yaml index af31be0..33433bd 100644 --- a/stash/compose.yaml +++ b/stash/compose.yaml @@ -8,6 +8,8 @@ services: restart: unless-stopped volumes: - filestash_data:/app/data/state/ + tmpfs: + - /tmp:exec environment: TZ: ${TIMEZONE:-Europe/Berlin} APPLICATION_URL: ${STASH_TRAEFIK_HOST}