jellyfin/manage-jellyfin.sh
2025-06-05 16:12:21 +00:00

13 lines
No EOL
227 B
Bash

#!/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 "$@"