Description | Command |
---|---|
start a new screen session with session name | screen -S |
list running sessions/screens | screen -ls |
attach to a running session | screen -x |
attach to session name | screen -r |
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
version: "3.9" | |
########################### NETWORKS | |
# You may customize the network subnet (192.168.90.0/24) below as you please. | |
# Docker Compose version 3.5 or higher required to define networks this way. | |
networks: | |
default: | |
driver: bridge | |
t2_proxy: |
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
#!/bin/bash | |
# Docker | |
curl -fsSL https://get.docker.com -o get-docker.sh | |
sh get-docker.sh | |
# Docker Compose | |
compose_release() { | |
curl --silent "https://api.github.com/repos/docker/compose/releases/latest" | | |
grep -Po '"tag_name": "\K.*?(?=")' |
Using startup script https://gist.github.com/MeenachiSundaram/6ffbbe38a072b94ad8d695d49d977ef7
sudo curl -L "https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
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
#!/bin/bash | |
apt-get update | |
apt-get install \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
software-properties-common |
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
#!/bin/bash | |
apt-get update | |
apt-get install -y git wget | |
# Install Docker | |
apt-get install \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ |
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
#!/bin/bash | |
for file in $( ls /etc/nginx/sites-available/ ) | |
do | |
#mkdir -p /home/grav/domains/$file | |
unzip -q /home/grav/grav-admin.zip -d /tmp/ | |
mv /tmp/*grav* /home/grav/domains/$file | |
ln -sF /etc/nginx/sites-available/$file /etc/nginx/sites-enabled/$file | |
done |
NewerOlder