Skip to content

Commit f796cf0

Browse files
authored
Create vpr-kuma.sh
1 parent 6cf55b0 commit f796cf0

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

vpr-kuma.sh

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
#!/bin/bash
2+
3+
###############################################################################################
4+
#
5+
# ******
6+
# *...../ / ******
7+
# ************** *****/ *****/*****/***/*************/ ****** /**********
8+
# ******/..*****/ *****/ *****/********//******/ ,*****/******,***** ,*****/
9+
# *****/ ***** *****/ *****/*****/ *****/ /**************************
10+
# *******//*****/ *************/*****/ *********************/*******./*/* ())
11+
# ************* ******/*****/*****/ *****/******/. ****** ********** (()))
12+
# *****/ *****/ ())
13+
# *****/ *****/
14+
#
15+
###############################################################################################
16+
# NOTICE: UBUNTU-SPECIFIC SCRIPT, WE RECOMMEND 22.04 LTS
17+
###############################################################################################
18+
mkdir -p /opt/PurpleComputing/UptimeKuma/data
19+
sudo apt-get remove docker docker-engine docker.io containerd runc -y
20+
sudo apt-get update -y && \
21+
sudo apt-get install \
22+
ca-certificates \
23+
curl \
24+
gnupg \
25+
lsb-release -y
26+
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
27+
echo \
28+
"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
29+
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
30+
31+
sudo apt-get update -y
32+
33+
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin docker-compose -y
34+
35+
36+
docker run -d --restart=always -p 3001:3001 -v /opt/PurpleComputing/UptimeKuma/data:/app/data --name uptime-kuma louislam/uptime-kuma:1

0 commit comments

Comments
 (0)