summaryrefslogtreecommitdiff
path: root/f3s/minvid/docker-image/entrypoint.sh
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-01-31 19:50:29 +0200
committerPaul Buetow <paul@buetow.org>2026-01-31 19:50:29 +0200
commitdc62ca6ab585f38d4d8e2ace98199d4887719821 (patch)
tree9c1ab576ac01852a20fc87053d88aa95b79d5250 /f3s/minvid/docker-image/entrypoint.sh
parent37a776605bab8cdf0afbe4951de438cbafa61b46 (diff)
cleanup
Diffstat (limited to 'f3s/minvid/docker-image/entrypoint.sh')
-rw-r--r--f3s/minvid/docker-image/entrypoint.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/f3s/minvid/docker-image/entrypoint.sh b/f3s/minvid/docker-image/entrypoint.sh
deleted file mode 100644
index 7865234..0000000
--- a/f3s/minvid/docker-image/entrypoint.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-# Create user and group if they don't exist
-if ! id -u minvid &>/dev/null; then
- addgroup -g ${PGID} minvid
- adduser -D -u ${PUID} -G minvid minvid
-fi
-
-# Ensure data directory exists and has correct permissions
-mkdir -p /app/data
-chown -R minvid:minvid /app/data
-
-# Execute the main command as minvid user
-exec su-exec minvid "$@"