Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/6d2a8a2ec4f714f32335c3da56418695226386cb?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
0 additions and
12 deletions
@ -118,12 +118,6 @@ msg_ok "Installed Docker $DOCKER_LATEST_VERSION"
read -r -p "Would you like to add Portainer? <y/N> " prompt
read -r -p "Would you like to add Portainer? <y/N> " prompt
if [ [ " ${ prompt ,, } " = ~ ^( y| yes) $ ] ] ; then
if [ [ " ${ prompt ,, } " = ~ ^( y| yes) $ ] ] ; then
PORTAINER = "Y"
else
PORTAINER = "N"
fi
if [ [ $PORTAINER = = "Y" ] ] ; then
msg_info " Installing Portainer $PORTAINER_LATEST_VERSION "
msg_info " Installing Portainer $PORTAINER_LATEST_VERSION "
docker volume create portainer_data >/dev/null
docker volume create portainer_data >/dev/null
$STD docker run -d \
$STD docker run -d \
@ -139,12 +133,6 @@ fi
read -r -p "Would you like to add Docker Compose? <y/N> " prompt
read -r -p "Would you like to add Docker Compose? <y/N> " prompt
if [ [ " ${ prompt ,, } " = ~ ^( y| yes) $ ] ] ; then
if [ [ " ${ prompt ,, } " = ~ ^( y| yes) $ ] ] ; then
DOCKER_COMPOSE = "Y"
else
DOCKER_COMPOSE = "N"
fi
if [ [ $DOCKER_COMPOSE = = "Y" ] ] ; then
msg_info " Installing Docker Compose $DOCKER_COMPOSE_LATEST_VERSION "
msg_info " Installing Docker Compose $DOCKER_COMPOSE_LATEST_VERSION "
DOCKER_CONFIG = ${ DOCKER_CONFIG :- $HOME /.docker }
DOCKER_CONFIG = ${ DOCKER_CONFIG :- $HOME /.docker }
mkdir -p $DOCKER_CONFIG /cli-plugins
mkdir -p $DOCKER_CONFIG /cli-plugins