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