#!/bin/bash # Environment variables TZ="Europe/London" # 8080/tcp 8443/tcp 8843/tcp 8880/tcp 10001/udp 3478/udp 5514/udp # Update and install dependencies apt-get update && apt-get upgrade -y && \ apt-get install -y curl gpg openjdk-17-jre-headless procps iputils-ping net-tools # Set timezone and configure /etc/localtime link ln -fs /usr/share/zoneinfo/$TZ /etc/localtime && \ DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata && \ dpkg-reconfigure --frontend noninteractive tzdata # Add UniFi repository and import its GPG key curl -s https://dl.ui.com/unifi/unifi-repo.gpg | tee /usr/share/keyrings/ubiquiti-archive-keyring.gpg >/dev/null && \ echo 'deb [signed-by=/usr/share/keyrings/ubiquiti-archive-keyring.gpg] https://www.ui.com/downloads/unifi/debian stable ubiquiti' | tee /etc/apt/sources.list.d/100-ubnt-unifi.list > /dev/null # Add MongoDB repository and import its GPG key curl -s https://pgp.mongodb.com/server-7.0.asc | gpg --dearmor | tee /usr/share/keyrings/mongodb-org-server-7.0-archive-keyring.gpg >/dev/null && \ echo 'deb [arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-org-server-7.0-archive-keyring.gpg] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse' | tee /etc/apt/sources.list.d/mongodb-org-7.0.list > /dev/null # Install MongoDB apt-get update && \ apt-get install -y mongodb-org && \ su -s /bin/bash -c "mongod --config /etc/mongod.conf --fork --bind_ip 127.0.0.1" mongodb # Install Unifi Controller apt-get update && apt-get install -y unifi # To change ports on what Unifi listening edit: nano /var/lib/unifi/system.properties # For example add on end: portal.https.port=8031 unifi.http.port=8040 unifi.https.port=8030 portal.http.port=8041