File tree Expand file tree Collapse file tree 2 files changed +8
-67
lines changed Expand file tree Collapse file tree 2 files changed +8
-67
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
[apt ]
2
2
sh = """
3
3
@sudo apt-get update
4
- @sudo apt-get install git
4
+ @sudo apt-get install apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
5
+ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
6
+ @sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
7
+ @sudo apt-get update
8
+ @sudo apt-get install docker-ce docker-ce-cli containerd.io
5
9
"""
6
10
7
11
[yum ]
8
12
sh = """
9
- @sudo yum install git
13
+ @sudo yum install -y yum-utils
14
+ @sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
15
+ @sudo yum install docker-ce docker-ce-cli containerd.io
10
16
"""
11
17
12
18
[pacman ]
You can’t perform that action at this time.
0 commit comments