diff --git a/Dahy_install.md b/Dahy_install.md index 575b804..a54bc4c 100644 --- a/Dahy_install.md +++ b/Dahy_install.md @@ -39,6 +39,9 @@ sections: # An array of sections url: https://github.com/Lissy93/dashy/issues - name: Local Services items: + - title: ProxMox + icon: https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/images/logo.png + url: https://192.168.200.80:8006 - title: Grafana icon: https://static-00.iconduck.com/assets.00/grafana-icon-942x1024-18c9p0yp.png url: http://192.168.200.84:3000 diff --git a/Gotify_install.md b/Gotify_install.md index 81dfb52..54c9e9c 100644 --- a/Gotify_install.md +++ b/Gotify_install.md @@ -13,7 +13,7 @@ docker-compose --version ``` ---- +---------------------------------------------------------------------------------------------------- ## 2. Создание директории для Gotify Лучшее место для сторонних сервисов — `/opt`: @@ -27,7 +27,7 @@ sudo mkdir -p /opt/gotify/certs && cd /opt/gotify/certs openssl req -x509 -newkey rsa:4096 -keyout gotify.key -out gotify.crt -days 365 -nodes -subj "/CN=your.domain.com" ``` ---- +---------------------------------------------------------------------------------------------------- ## 3. Создание `docker-compose.yml` Создадим конфигурацию: diff --git a/Jenkins_install.md b/Jenkins_install.md new file mode 100644 index 0000000..27f7159 --- /dev/null +++ b/Jenkins_install.md @@ -0,0 +1,51 @@ +Install by docs from https://www.cherryservers.com/blog/install-jenkins-ubuntu + +## Prepare installation + +Открываю нужный сервер +```sh +wsl +``` +```sh +sudo apt update +``` +```sh +sudo apt upgrade +``` +```sh + sudo apt install openjdk-21-jdk openjdk-21-jre -y && + java -version +``` +## Add Jenkins Repository + +```sh +sudo wget -O /usr/share/keyrings/jenkins-keyring.asc https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key +``` +Next, add the Jenkins repository to your system’s sources.list: +```sh +sudo sh -c 'echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] https://pkg.jenkins.io/debian binary/ > /etc/apt/sources.list.d/jenkins.list' +``` + +```sh +sudo apt update +``` + +```sh +sudo apt install jenkins +``` + +```sh +sudo systemctl start jenkins && +sudo systemctl enable jenkins && +sudo systemctl status jenkins +``` + +```sh +start http://127.0.0.1:8080 +``` + + +See what port in locked +```sh +netstat -tpln +``` \ No newline at end of file