Created
February 21, 2022 16:08
-
-
Save cloudybdone/c3938d8b69ccefcf136dee60127a7026 to your computer and use it in GitHub Desktop.
Installation of Docker & Docker Composer on Linux
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
| If you need any help related to Docker & Docker Composer Configuration Service on Ubuntu contact with me: | |
| Telegram: https://t.me/Cloudybdone | |
| WhatsApp: https://wa.link/3j794g | |
| Skype: https://join.skype.com/invite/vLFaKHx... | |
| Email: cloudybdone@gmail.com | |
| Linkedin: https://www.linkedin.com/in/cloudybdone/ | |
| Facebook: https://www.facebook.com/cloudybdone/ | |
| About Me: https://about.me/cloudybdone | |
| YouTube PlayList: https://www.youtube.com/watch?v=nkS8-nsS-Hs&list=PLiveDaEySXe_PDithT-aJcPR_sT7PHHtc | |
| sudo apt update -y | |
| sudo apt-get upgrade -y | |
| sudo apt install software-properties-common | |
| sudo apt upgrade -o APT::Get::Show-Upgraded=true | |
| sudo apt install apt-show-versions | |
| sudo apt update -y | |
| sudo apt-get upgrade -y | |
| sudo -i | |
| apt update | |
| exit | |
| sudo apt update | |
| sudo apt install git | |
| sudo git config --global user.name "name" | |
| sudo git config --global user.email domain@gmail.com | |
| sudo apt upgrade -y | |
| sudo apt autoremove | |
| sudo apt update | |
| sudo reboot | |
| # Docker Install | |
| apt-get update -y | |
| apt-get upgrade -y | |
| apt-get install apt-transport-https ca-...... | |
| curl -fsSL https://download.docker.com/linux/ubuntu.... | |
| add-apt-repository \ | |
| "deb [arch=amd64] https://download.docker.com/linux/ubuntu | |
| apt-get update -y | |
| systemctl restart docker | |
| systemctl status docker | |
| docker --version | |
| # Docker Compose Install | |
| sudo curl -L "https://github.com/docker/compose/releases... | |
| chmod +x /usr/local/... | |
| ln -s /usr/local/bin/docker-compose... | |
| apt-get update -y | |
| apt-get upgrade -y | |
| docker-compose --version | |
| # GRGSM_DOCKER | |
| git clone https://github.com/.... | |
| cd SMS... | |
| git pull | |
| docker run -i -t -d \ | |
| --name GSM \ | |
| --restart always \ | |
| bclswl0827/gsm-sniffing-docker:latest |
cloudybdone
commented
Feb 23, 2022
Author

Author
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

