[Request] Image to install shop, not build everything from the start
All images available seems to be building everything:
- installing composer
-
composer installto get all the php dependencies - installing node
- building all themes in admin and FO classic
This is very time consuming, docker image is quite big and almost never works (ie. ends with composer not found 😫 ). Besides it's not even required if all I need is just improve the theme or build a new one.
Can you provide an image that would simply install the shop from the ZIP using provided env variables? For example:
PS_VERSION: ${PS_VERSION:-1.7.8.2} MYSQL_VERSION: ${MYSQL_VERSION:-5.7} NODE_VERSION: ${NODE_VERSION:-16} PS_INSTALL_AUTO: ${PS_INSTALL_AUTO:-1} DB_PASSWD: ${DB_PASSWD:-prestashop} DB_NAME: ${DB_NAME:-prestashop} DB_SERVER: ${DB_SERVER:-mysql} DB_PREFIX: ${DB_PREFIX:-ps_} PS_DOMAIN: ${PS_DOMAIN:-localhost:8000} PS_COUNTRY: ${PS_COUNTRY:-en} PS_LANGUAGE: ${PS_LANGUAGE:-en} PS_DEV_MODE: ${PS_DEV_MODE:-0}
Just create php server with mysql, node and install the shop.