문제

I am new to Docker technology,I am trying to create a shell script on my host to clear caches and to deploy my static content in Magento 2 inside my apach containe. to access to my apach container i use this command :

docker-compose exec --user www-data apache bash

and i created my script shell in the my project root on my host. my question is how can i run my shell script outside my apache container to execute this command:

bin/magento setup:static-content:deploy

Thanks in advance.

도움이 되었습니까?

해결책

docker exec -it CONTAINER_NAME php /var/www/html/bin/magento setup:static-content:deploy -f

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top