mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
Update entrypoint.sh
This commit is contained in:
parent
e0c9b69572
commit
e3e1e17859
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user