You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
224 B
Bash

# User ID and Group ID for Docker volume permissions
# This ensures the container runs with your user's permissions
# avoiding the need for root access
# On Linux/WSL2, use:
# UID=$(id -u)
# GID=$(id -g)
UID=1000
GID=1000