Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/33daeeb00c6219ec7c7cf3109611be4ce9c355a3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
22 additions and
0 deletions
@ -76,6 +76,28 @@ EOF
sh <( curl -sSL https://get.docker.com) & >/dev/null
echo -e " ${ CM } ${ CL } \r "
read -r -p "Add Portainer? <Y/n> " prompt
if [ [ $prompt = = "y" || $prompt = = "Y" || $prompt = = "yes" || $prompt = = "Yes" ] ]
then
PORTAINER = "Y"
else
PORTAINER = "N"
fi
if [ [ $PORTAINER = = "Y" ] ] ; then
echo -en " ${ GN } Installing Portainer $PORTAINER_LATEST_VERSION ... "
docker volume create portainer_data >/dev/null
docker run -d \
-p 8000:8000 \
-p 9000:9000 \
--name= portainer \
--restart= always \
-v /var/run/docker.sock:/var/run/docker.sock \
-v portainer_data:/data \
portainer/portainer-ce:latest & >/dev/null
echo -e " ${ CM } ${ CL } \r "
fi
PASS = $( grep -w "root" /etc/shadow | cut -b6) ;
if [ [ $PASS != $ ] ] ; then
echo -en " ${ GN } Customizing Container... "