13 lines
No EOL
227 B
Bash
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 "$@" |