Skip to content

whazor/docker

 
 

Repository files navigation

PrestaShop on Docker

Supported tags

  • 1.6, 1.6.1.0, latest
  • 1.5, 1.5.6.3
  • 1.4, 1.4.11.1

What is PrestaShop

PrestaShop is a free and open-source e-commerce web application, committed to providing the best shopping cart experience for both merchants and customers. It is written in PHP, is highly customizable, supports all the major payment services, is translated in many languages and localized for many countries, has a fully responsive design (both front and back office), etc. See all the available features.

www.prestashop.com

PrestaShop's back office dashboard

How to run this image

This image is running with the latest Apache version in the official PHP repository.

The most simple way to run this container is:

$ docker run -ti --name some-prestashop -p 8080:80 -d quetzacoalt/prestashop

A new shop will be built, ready to be installed. You can then use it by reaching http://localhost:8080. However, if you want to customize the container execution, here are many available options:

  • PS_DEV_MODE: The constant _PS_MODE_DEV_ will be set at true (default value: 0)
  • PS_HOST_MODE: The constant _PS_HOST_MODE_ will be set at true. Usefull to simulate a PrestaShop Cloud environment. (default value: 0)
  • DB_SERVER: If set, the external MySQL database will be used instead of the volatile internal one (default value: localhost)
  • DB_USER: Override default MySQL user (default value: root)
  • DB_PASSWD: Override default MySQL password (default value: admin)
  • DB_PREFIX: Override default tables prefix (default value: ps_)
  • DB_NAME: Override default database name (default value: prestashop)
  • PS_INSTALL_AUTO=1: The installation will be executed. Useful to initialize your image faster. (Please note that PrestaShop can be installed automatically from PS 1.5)
  • PS_LANGUAGE: Change the default value installed with PrestaShop (default value: en)

By default, we use the employee existing on the PrestaShop demo. But you can change it with the following parameters:

  • ADMIN_MAIL: Override default admin email (default value: demo@prestashop.com)
  • ADMIN_PASSWD: Override default admin password (default value: prestashop_demo)

License

View license information for the software contained in this image.

Documentation

The documentation (in English by default) is available at the following addresses:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 51.0%
  • PHP 49.0%