mirror of
https://github.com/moghtech/komodo.git
synced 2026-04-30 06:03:34 -05:00
11 lines
590 B
Bash
11 lines
590 B
Bash
apt-get update
|
|
apt-get install -y ca-certificates curl gnupg lsb-release git
|
|
git config --global pull.rebase false
|
|
|
|
# install docker cli
|
|
# mkdir -p /etc/apt/keyrings
|
|
# curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
|
# echo \ "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
# apt-get update
|
|
# apt-get install docker-ce docker-ce-cli
|
|
curl -fsSL https://get.docker.com | sh |