Skip to content

Instantly share code, notes, and snippets.

@LinuxlinkedBD
Created July 3, 2021 18:35
Show Gist options
  • Save LinuxlinkedBD/e5466f06a093cb2e332168ee8a9f60f5 to your computer and use it in GitHub Desktop.
Save LinuxlinkedBD/e5466f06a093cb2e332168ee8a9f60f5 to your computer and use it in GitHub Desktop.
How to install Saleor ecommerce platform on Linux Server
If you need complete Saleor ecommerce platform setup, ping me on below contacts:
Telegram: linuxlinked
email: linuxlinked@gmail.com
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
@LinuxlinkedBD
Copy link
Author

1 1
1
2
3
4
5

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