Spin a Prestashop testing instance in seconds!
100K+

Spin a Prestashop testing instance in seconds!
⚠️ Disclaimer: the following tool is provided in the sole purpose of bootstraping a PrestaShop testing environment.
If you look for a production grade image, please refer to prestashop/prestashop.
Note: no MySQL server is shipped in the resulting image, you have to provide your own instance for the backup to be dumped during the first connection.
If you already have a database with default variables (see below)
docker run -it -p 8000:80 -e PS_DOMAIN=localhost:8000 --network host prestashop/prestashop-flashlight:latest
version: "3"
services:
prestashop:
image: prestashop/prestashop-flashlight:latest
depends_on:
- mysql
environment:
- PS_DOMAIN=localhost:8000
ports:
- "8000:80"
mysql:
image: mariadb:lts
environment:
- TZ=UTC
- MYSQL_USER=prestashop
- MYSQL_PASSWORD=prestashop
- MYSQL_ROOT_PASSWORD=prestashop
- MYSQL_DATABASE=prestashop
ports:
- "3306:3306"
will run PrestaShop interface on localhost:8000 and connect to mysql on localhost:3306 without password.
If you want a more advanced docker compose
PS_DOMAIN
NGROK_TUNNEL_AUTO_DETECTlocalhost:8000NGROK_TUNNEL_AUTO_DETECT
PS_DOMAINhttp://ngrok:4040SSL_REDIRECT
true PrestaShop will be told to redirect all inbound traffic to https://$PS_DOMAINfalse (or automatically guessed if using NGROK_TUNNEL_AUTO_DETECT)DEBUG_MODE
true the Debug mode will be enabled on PrestaShopfalseINSTALL_MODULES_DIR
/ps-modulesINIT_ON_RESTART
true the PS_DOMAIN auto search and dump fix will be replayed on container restartfalseDUMP_ON_RESTART
true the dump restoration replayed on container restartfalseINSTALL_MODULES_ON_RESTART
true zip modules will be reinstalled on container restartfalseINIT_SCRIPTS_ON_RESTART
true custom init scripts will be replayed on container restartfalseON_INIT_SCRIPT_FAILURE
continue, PrestaShop Flashlight will continue the boot process even if an init script failedfailMore information on PrestaShop/prestashop-flashlight
Content type
Image
Digest
sha256:3d8ad8490…
Size
306.4 MB
Last updated
3 months ago
docker pull prestashop/prestashop-flashlight