Add Docker pages #2

Open
aqua3 wants to merge 10 commits from dev into main
1 changed files with 7 additions and 2 deletions
Showing only changes of commit e466c274cb - Show all commits

View File

@ -7,11 +7,16 @@
DRY_RUN=false
LOCAL=/usr/local
SUDO=$(test ${EUID} -ne 0 && which sudo)
L4T_VERSION=$(head -n 1 /etc/nv_tegra_release | grep -o 'R..')
$SUDO apt-get install -y cockpit
if [ "$L4T_VERSION" == "R35" ]; then
$SUDO apt install -t focal-backports cockpit -y
else
$SUDO apt install cockpit -y
fi
# Change the port to 443/80 and restart
$SUDO sed -i 's/9090/443/g' /lib/systemd/system/cockpit.socket
$SUDO sed -i '/ListenStream=80/d' /lib/systemd/system/cockpit.socket
$SUDO sed -i '/ListenStream=443/a ListenStream=80' /lib/systemd/system/cockpit.socket