diff --git a/compose/production/traefik/traefik.toml.template b/compose/production/traefik/traefik.toml.template index 1a1ce2b..2f3fa39 100644 --- a/compose/production/traefik/traefik.toml.template +++ b/compose/production/traefik/traefik.toml.template @@ -74,7 +74,7 @@ defaultEntryPoints = ["http"] [backends.cockpit] [backends.cockpit.servers.server1] - url = "http://IPV4_PUBLIC:9090" + url = "http://10.2.3.1:9090" [frontends] [frontends.django] diff --git a/scripts/install.sh b/scripts/install.sh index c8f54af..705edf9 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -181,7 +181,6 @@ sudo mkdir -p ../mistborn_volumes/extra # Traefik final setup (cockpit) cp ./compose/production/traefik/traefik.toml.template ./compose/production/traefik/traefik.toml -sudo sed -i "s/IPV4_PUBLIC/$IPV4_PUBLIC/" ./compose/production/traefik/traefik.toml # Download docker images while DNS is operable sudo docker-compose -f base.yml pull || true diff --git a/scripts/subinstallers/docker.sh b/scripts/subinstallers/docker.sh index 7c5da2a..dbb4a2c 100755 --- a/scripts/subinstallers/docker.sh +++ b/scripts/subinstallers/docker.sh @@ -61,7 +61,7 @@ echo "Installing Docker Compose" #elif [ "$DISTRO" == "raspbian" ]; then # Install required packages sudo apt update -sudo apt install -y python python3-pip libffi-dev python-backports.ssl-match-hostname python3-dev libssl-dev +sudo apt install -y python python3-pip python3-setuptools libffi-dev python-backports.ssl-match-hostname python3-dev libssl-dev # Install Docker Compose from pip # This might take a while