Update entrypoint.sh

This commit is contained in:
Stefan Pejcic 2024-05-10 07:26:23 +02:00 committed by GitHub
parent e0c9b69572
commit e3e1e17859
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,14 +1,15 @@
#!/bin/bash
echo "Container is starting..."
# Get the current container's IP address
: '
CONFIGURATION
On restart grant sudo if set, store random ip
'
CONTAINER_IP=$(hostname -i)
# Get the container's gateway IP address
GATEWAY_IP=$(ip route | awk '/default/ { print $3 }')
# Old IP address to be replaced on docker run
OLD_IP="tst"
SUDO="NO"
: '
@ -120,5 +121,13 @@ else
fi
# sudo
if grep -q 'SUDO="YES"' /etc/entrypoint.sh; then
# Add user with UID 1000 to the sudo group
usermod -aG sudo -u 1000 $(getent passwd 1000 | cut -d: -f1)
fi
# Save the current IP for reuse
sed -i "s/$OLD_IP/$CONTAINER_IP/g" "$0"