DEV Community

Rhonal Chirinos
Rhonal Chirinos

Posted on • Updated on

Install my development environment In Prestashop

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 
Enter fullscreen mode Exit fullscreen mode

3 Install prerequisite Packages

sudo apt install apt-transport-https ca-certificates curl software-properties-common -y
Enter fullscreen mode Exit fullscreen mode

4 Add GPG key

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Enter fullscreen mode Exit fullscreen mode

5 Add Docker Repository

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" 
Enter fullscreen mode Exit fullscreen mode

6 Specify Installation Source

sudo apt-cache policy docker-ce
Enter fullscreen mode Exit fullscreen mode

7 Install Docker

sudo apt install docker-ce -y
Enter fullscreen mode Exit fullscreen mode

8 Check Docker Status

sudo systemctl status docker 
Enter fullscreen mode Exit fullscreen mode

9 Learn how to use docker

10 Install PrestaCLI

composer global require rhonalchirinos/prestacli
Enter fullscreen mode Exit fullscreen mode

That's it!

Top comments (0)