This file contains hidden or 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
FROM ubuntu:16.04 | |
RUN apt-get update && \ | |
apt-get dist-upgrade -y && \ | |
apt-get install -y htop curl nano | |
# Install PHP | |
RUN apt-get install -y php7.0 php7.0-mbstring php7.0-dom |
This file contains hidden or 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
#!/bin/bash | |
# Install Docker if not avaliable | |
if ! [ -x "$(command -v docker)" ]; then | |
curl -sSL https://get.docker.io | sudo sh | |
fi | |
# Update Tyr Worker image | |
docker pull thenets/tyrworker:latest |
This file contains hidden or 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
clear | |
echo "# ======================================================== #" | |
echo "# == Easy CKAN installation for Ubuntu 16.04 == #" | |
echo "# #" | |
echo "# Special thanks to: #" | |
echo "# Alerson Luz (GitHub: alersonluz) #" | |
echo "# Adrien GRIMAL #" | |
echo "# ======================================================== #" | |
su -c "sleep 3" |
This file contains hidden or 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
#!/bin/bash | |
# ====================================================== | |
# Simple one command installers for Fedora | |
# ====================================================== | |
# Atom IDE | |
rm -f /tmp/atom.x86_64.rpm ; wget -O -q /tmp/atom.x86_64.rpm $(curl -sSL https://api.github.com/repos/atom/atom/releases/latest | sed 's/ //g' | grep '/atom.x86_64.rpm' | sed 's/"browser_download_url"://g' | sed 's/"//g') ; sudo dnf install -y /tmp/atom.x86_64.rpm |
This file contains hidden or 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
# Create installation dir | |
mkdir ~/.apps/ | |
# Remove old version | |
rm -R ~/.apps/Telegram/ | |
# Download and extract | |
cd ~/.apps/ | |
wget https://tdesktop.com/linux -O "telegram.tar.xz" | |
tar -xf ./telegram.tar.xz |
NewerOlder