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.
(#55) Add support for using LaTeX in plots, also make some other chan…
…ges: * Install and precompile IJulia, PyPlot, and Plots; * Change base image to Ubuntu; * Add key bindings; * Add Node.js and npm; * Remove the tests from the Travis build.
- Loading branch information
Pavel Sobolev
authored
Jul 4, 2020
1 parent
3695bb4
commit 904e918
Showing
18 changed files
with
349 additions
and
186 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,12 +1,28 @@ | ||
#!/bin/sh | ||
|
||
# Print info | ||
echo -e '\n\e[1m\033[36mInstalling docker:\033[0m' | ||
echo '\n\e[1m\033[36mInstalling docker:\033[0m' | ||
|
||
# Install the package | ||
echo -e '\e[1m\033[36m> Installing the package...\033[0m' | ||
apk add --no-cache docker=19.03.11-r0 >/dev/null | ||
# Update lists of packages | ||
echo '\e[1m\033[36m> Updating lists of packages...\033[0m' | ||
apt-get update >/dev/null | ||
|
||
# Add docker's official GPG key | ||
echo "\e[1m\033[36m> Addding docker's official GPG key...\033[0m" | ||
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - >/dev/null | ||
|
||
# Set up stable repository | ||
echo '\e[1m\033[36m> Setting up stable repository...\033[0m' | ||
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" >/dev/null | ||
|
||
# Install Docker engine | ||
echo '\e[1m\033[36m> Installing Docker engine...\033[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 '\e[1m\033[36m> Adding the user to the docker group...\033[0m\n' | ||
sudo usermod -aG docker $USER | ||
echo '\e[1m\033[36m> Adding the user to the docker group...\033[0m' | ||
usermod -aG docker $USER | ||
|
||
# Clean the apt cache | ||
echo '\e[1m\033[36m> Cleaning the apt cache...\033[0m\n' | ||
rm -rf /var/lib/apt/lists/* |
Oops, something went wrong.