-
-
Save srghma/6471eb472ebf3926948cbe4b422c39f3 to your computer and use it in GitHub Desktop.
Install Docker + Docker-compose on Ubuntu
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
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
sudo apt-get update | |
apt-cache policy docker-ce | |
sudo apt-get install -y docker-ce | |
sudo curl -o /usr/local/bin/docker-compose -L "https://github.com/docker/compose/releases/download/1.21.2/docker-compose-$(uname -s)-$(uname -m)" | |
sudo chmod +x /usr/local/bin/docker-compose | |
sudo usermod -a -G docker $USER | |
# reenter ssh |
Restore from tarsnap
wget https://pkg.tarsnap.com/tarsnap-deb-packaging-key.asc && sudo apt-key add tarsnap-deb-packaging-key.asc && (echo "deb http://pkg.tarsnap.com/deb/$(lsb_release -s -c) ./" | sudo tee -a /etc/apt/sources.list.d/tarsnap.list) && rm -f tarsnap-deb-packaging-key.asc && sudo apt-get update && sudo apt-get install -y tarsnap
# upload key
# cat /etc/tarsnap.conf
# https://www.tarsnap.com/simple-usage.html#restoring-backups
chown root /root/tarsnap.key
# https://www.starryhope.com/tarsnap-online-backups-for-security-conscious-geeks/
# or
KEYFILE="/home/ubuntu/backup_tarsnap_aws/xxxxxxx.key"
tarsnap --keyfile $KEYFILE --list-archives | sort
ARCH_NAME=/xxxxx
OUT_DIR=/home/ubuntu/
mkdir -p $OUT_DIR
# list content
tarsnap --keyfile $KEYFILE -tv -f $ARCH_NAME
# restore all to dir
tarsnap --keyfile $KEYFILE -x -f $ARCH_NAME -C $OUT_DIR
Install gitlab ci runner
https://about.gitlab.com/2016/04/19/how-to-set-up-gitlab-runner-on-digitalocean/
curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh | sudo bash
sudo apt-get install gitlab-runner
gitlab-runner --version
# goto project settings -> runners
sudo gitlab-runner register
# if docker executor
sudo usermod -a -G docker gitlab-runner
# if dind
sudo vim /etc/gitlab-runner/config.toml # to add priviliged flag (https://gitlab.com/gitlab-org/gitlab-runner/issues/1544#note_13439656)
sudo gitlab-runner restart
# in case "New runner. Has not connected yet"
# https://codereviewvideos.com/blog/how-i-solved-new-runner-has-not-connected-yet-in-gitlab-ci/#comment-5803
sudo chown -R gitlab-runner:gitlab-runner /home/gitlab-runner
sudo systemctl restart gitlab-runner.service
sudo apt-get install git-crypt
https://askubuntu.com/a/833979/696966
sudo nvim /etc/sysctl.conf
sudo sysctl -p
fs.inotify.max_user_watches=1048576
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
# curl -O https://dl.eff.org/certbot-auto && chmod +x certbot-auto && sudo mv certbot-auto /usr/local/bin/certbot-auto && sudo cp /usr/local/bin/certbot-auto /usr/local/bin/certbot rm -f /usr/local/bin/certbot /usr/local/bin/certbot-auto sudo apt install certbot python3-certbot-nginx
# TODO sudo apt-get install software-properties-common sudo add-apt-repository ppa:neovim-ppa/stable sudo apt-get update sudo apt-get install -y neovim python-dev python3-dev python3-pip sudo update-alternatives --install /usr/bin/vi vi /usr/bin/nvim 60 sudo update-alternatives --config vi sudo update-alternatives --install /usr/bin/vim vim /usr/bin/nvim 60 sudo update-alternatives --config vim sudo update-alternatives --install /usr/bin/editor editor /usr/bin/nvim 60 sudo update-alternatives --config editor