This repository has been archived by the owner on Apr 1, 2022. It is now read-only.
-
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.
* (#77) Make quick little fixes; * (#78) Fix locale and add `less`; * (#82) Add `ncdu`, `make`, `zip` and `unzip`; * (#83) Make corrections for the comments and the description; * (#84) Make few Julia updates; * (#86) Add more support for remote development with GUI.
- Loading branch information
Showing
21 changed files
with
223 additions
and
198 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
File renamed without changes
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
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
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
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,6 @@ | ||
#!/bin/sh | ||
|
||
echo '\n\e[1;36mInstalling the browser:\e[0m' | ||
|
||
echo '\e[1;36m> Installing Midori:\e[0m\n' | ||
apt-get install -y --no-install-recommends midori >/dev/null |
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 |
---|---|---|
@@ -1,28 +1,21 @@ | ||
#!/bin/sh | ||
|
||
# Print info | ||
echo '\n\e[1;36mInstalling Docker:\e[0m' | ||
|
||
# Update lists of packages | ||
echo '\e[1;36m> Updating lists of packages...\e[0m' | ||
apt-get update >/dev/null | ||
|
||
# Add docker's official GPG key | ||
echo "\e[1;36m> Addding docker's official GPG key...\e[0m" | ||
echo "\e[1;36m> Addding Docker's official GPG key...\e[0m" | ||
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - >/dev/null | ||
|
||
# Set up stable repository | ||
echo '\e[1;36m> Setting up stable repository...\e[0m' | ||
echo '\e[1;36m> Setting up the stable repository...\e[0m' | ||
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" >/dev/null | ||
|
||
# Install Docker engine | ||
echo '\e[1;36m> Installing Docker engine...\e[0m' | ||
apt-get install -y --no-install-recommends docker-ce docker-ce-cli containerd.io >/dev/null | ||
|
||
# Add the user to the docker group | ||
echo '\e[1;36m> Adding the user to the docker group...\e[0m' | ||
echo '\e[1;36m> Adding the user to the `docker` group...\e[0m' | ||
usermod -aG docker $USER | ||
|
||
# Clean the apt cache | ||
echo '\e[1;36m> Cleaning the apt cache...\e[0m\n' | ||
echo '\e[1;36m> Cleaning the `apt` cache...\e[0m\n' | ||
rm -rf /var/lib/apt/lists/* |
Oops, something went wrong.