Installing Magento via docker getting with Elasticsearch
I am trying to run Magneto 2.4.3(php 7.4). Here is my docker-compose.yml file. services: web: image: webdevops/php-apache-dev:7.4 container_name: magento2-web volumes: – .:/public_html ports: – “127.0.0.1:8989:80” user: www-data:www-data environment: – WEB_DOCUMENT_ROOT=/public_html/pub – WEB_ALIAS_DOMAIN=local.magento2.com:8989 – WEB_NO_CACHE_PATTERN=\.\w+$ – CONTAINER_UID=33 #see https://github.com/webdevops/Dockerfile/issues/226 restart: always… Read More »Installing Magento via docker getting with Elasticsearch