Created
July 3, 2021 18:35
-
-
Save LinuxlinkedBD/e5466f06a093cb2e332168ee8a9f60f5 to your computer and use it in GitHub Desktop.
How to install Saleor ecommerce platform on Linux Server
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
If you need complete Saleor ecommerce platform setup, ping me on below contacts: | |
Telegram: linuxlinked | |
email: [email protected] | |
WhatsApp: +8801720903155 | |
Skype:live:.cid.c0dc316b9d727d5e | |
YouTube: https://youtu.be/hdiUKA37OZU | |
######################################################################################################################################## | |
#!/bin/bash | |
sudo apt-get update | |
sudo apt update | |
sudo apt-get install software-properties-common | |
sudo apt update | |
sudo add-apt-repository ppa:git-core/ppa | |
sudo apt update | |
sudo apt -y install git | |
sudo apt update | |
sudo apt upgrade -y | |
sudo apt update && sudo apt-get upgrade -y --fix-missing && sudo apt -y install build-essential checkinstall && sudo apt -y install ubuntu-restricted-extras && sudo apt -y install software-properties-common | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" | |
sudo apt update | |
apt-cache policy docker-ce | |
sudo apt -y install docker-ce | |
sudo systemctl status docker | |
docker-compose --version | |
git clone https://github.com/mirumee/saleor-platform.git | |
docker-compose up |
Author
LinuxlinkedBD
commented
Jul 3, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment