Initial commit

This commit is contained in:
robojerk 2025-06-05 16:12:21 +00:00
commit ed96355a70
31 changed files with 6683 additions and 0 deletions

13
manage-jellyfin.sh Normal file
View file

@ -0,0 +1,13 @@
#!/bin/bash
# Set PUID and PGID dynamically
export PUID=$(id -u)
export PGID=$(id -g)
# Load other environment variables
set -a
source .env
set +a
# Execute docker compose command with proper environment
docker compose "$@"