1.7, 1.7.3.0, latest1.6, 1.6.1.181.5, 1.5.6.31.4, 1.4.11.1By default, our images are running with PHP 5.6. But each major version can be launched with another PHP version if you want to.
1.5-5.5, 1.6-5.5, 1.7-5.51.5-7.0, 1.6-7.0, 1.7-7.0You can use tags for this. For example:
$ docker run -ti --name my-docker-name -e PS_DEV_MODE=false -e PS_INSTALL_AUTO=0 -p 8080:80 -d prestashop/prestashop:1.7-7.0
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.

This image is running with the latest Apache version in the official PHP repository. For the database, you can use and link any SQL server related to MySQL.
Currently if you do not have any MySQL server, the most simple way to run this container is:
$ docker run -ti --name some-mysql -e MYSQL_ROOT_PASSWORD=admin -d mysql
$ docker run -ti --name some-prestashop --link some-mysql -e DB_SERVER=some-mysql -p 8080:80 -d prestashop/prestashop
A new shop will be built, ready to be installed. You can then use it by reaching http://localhost:8080. The MySQL server can be reached with the URL some-mysql:3306.
However, if you want to customize the container execution, here are many available options:
_PS_MODE_DEV_ will be set at true (default value: 0)_PS_HOST_MODE_ will be set at true. Usefull to simulate a PrestaShop Cloud environment. (default value: 0)admin folder (default value: admin. But will be automatically changed later)install folder (default value: install. But must be changed anyway later)By default, we use the employee existing on the PrestaShop demo. But you can change it with the following parameters:
If your IP / port (or domain) change between two executions of your container, you will need to modify this option:
View license information for the software contained in this image.
The documentation (in English by default) is available at the following addresses:
Content type
Image
Digest
Size
358.6 MB
Last updated
over 8 years ago
docker pull redparagon/prestashop