mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
12 lines
434 B
Bash
12 lines
434 B
Bash
#!/bin/bash
|
|
sudo apt upgrade -y
|
|
sudo apt update -y
|
|
sudo apt install -y apt-transport-https ca-certificates curl software-properties-common
|
|
|
|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
|
|
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
|
|
sudo apt update -y
|
|
|
|
sudo apt install -y docker-ce
|
|
sudo systemctl start docker
|
|
sudo systemctl enable docker
|