Spaces:
Sleeping
Sleeping
File size: 273 Bytes
80db73d dfd32bf 45e3447 dfd32bf 87aacc5 5783142 dfd32bf 80db73d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
# entrypoint.sh
# Check if the user already exists
if id "$USER_ID" >/dev/null 2>&1; then
echo "User with ID $USER_ID already exists."
else
# Create the user with the specified UID
useradd -m -u "$USER_ID" user
fi
# Run the main command
exec "$@"
|