-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add todo file with information for other potential scripts.
- Loading branch information
1 parent
39a93ba
commit 7e4318b
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
===================================== | ||
pdftk | ||
===================================== | ||
wget http://mirrors.kernel.org/ubuntu/pool/universe/p/pdftk-java/pdftk-java_3.0.2-2_all.deb | ||
apt install ./pdftk-java_3.0.2-2_all.deb | ||
===================================== | ||
===================================== | ||
|
||
===================================== | ||
awscli | ||
===================================== | ||
apt-get install awscli | ||
===================================== | ||
===================================== | ||
|
||
===================================== | ||
docker | ||
===================================== | ||
apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common | ||
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | ||
apt-key fingerprint 0EBFCD88 | ||
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ | ||
$(lsb_release -cs) \ | ||
stable" | ||
apt-get update | ||
apt-get install docker-ce docker-ce-cli containerd.io | ||
===================================== | ||
===================================== |