Hello my friend,
The environment is very important, first to create a environment for make a module in PS, new need install Docker and to know use it.
Configure your environment
1 Open your terminal
2 Update the package Repository
sudo apt update
3 Install prerequisite Packages
sudo apt install apt-transport-https ca-certificates curl software-properties-common -y
4 Add GPG key
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
5 Add Docker Repository
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
6 Specify Installation Source
sudo apt-cache policy docker-ce
7 Install Docker
sudo apt install docker-ce -y
8 Check Docker Status
sudo systemctl status docker
9 Learn how to use docker
10 Install PrestaCLI
composer global require rhonalchirinos/prestacli
That's it!
Top comments (0)