Last active
February 24, 2022 17:22
-
-
Save cloudybdone/94525e32e7e037927a01a9880c1caa1f to your computer and use it in GitHub Desktop.
How to Install TastyIgniter on Ubuntu 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 TastyIgniter Configuration Service on Ubuntu Linux 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=qGeljrGcd00&list=PLiveDaEySXe_8Y5Ja21pOFllsaTpCy3YY | |
| sudo apt update && sudo apt-get upgrade | |
| sudo apt install ubuntu-restricted-extras | |
| sudo apt install software-properties-common | |
| sudo apt install launchpad-getkey | |
| sudo apt install git | |
| sudo apt upgrade -y | |
| sudo apt -f install | |
| sudo apt -y autoclean | |
| sudo apt update | |
| sudo reboot | |
| sudo -i | |
| apt update | |
| mysql_secure_installation | |
| nano /etc/mysql/mysql | |
| sudo systemctl restart mysql | |
| sudo apt-get update -y | |
| sudo mysql | |
| CREATE USER 'netadmin'@'localhost' IDENTIFIED WITH mysql..... | |
| GRANT CREATE, ALTER, DROP, INSERT, UPDATE, DELETE.... | |
| FLUSH PRIVILEGES; | |
| exit | |
| sudo systemctl restart mysql | |
| sudo apt-get update -y | |
| sudo apt-key fingerprint... | |
| sudo curl -fsSL https://download.... | |
| sudo add-apt-repository "deb [arch=amd64] https://download.... | |
| sudo systemctl start docker | |
| sudo usermod ..... | |
| sudo systemctl status docker | |
| docker --version | |
| # Docker Compose Install | |
| sudo curl -L "https://github.com/docker/compose/ | |
| sudo ln -s /usr/local/bin/docker... | |
| sudo apt-get update -y | |
| docker-compose --version | |
| sudo -i | |
| git clone https://github.com.. | |
| cd TastyIgniter | |
| git add . | |
| git pull | |
| docker build . | |
| Visit: localhost:8001 |
cloudybdone
commented
Feb 24, 2022
Author

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


