-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall_dep_ubuntu_jammy_22_04.sh
More file actions
executable file
·36 lines (25 loc) · 1.12 KB
/
install_dep_ubuntu_jammy_22_04.sh
File metadata and controls
executable file
·36 lines (25 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
sudo apt-get update
sudo apt-get -y install \
apt-transport-https \
ca-certificates \
curl \
gnupg \
software-properties-common \
certbot
# ===================== BEGIN DOCKER INSTALL ====================================
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
# Add the repository to Apt sources:
echo \
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
# ===================== END DOCKER ====================================
# certbot is needed
./getCertificates.sh
git clone git@gitlab.com:vncoelho/neocompiler-server-metadata-3x.git metadata
git clone https://github.com/NeoResearch/neocompiler-eco.git neocompiler.io