Execute commands in Docker containers
yarn run exec <container name> [commands]
or npm run exec -- <container name> [commands]
yarn run exec <container name> [commands]
or npm run exec -- <container name> [commands]
Since magento-scripts@1.1.0
Executes command in a chosen container.
This command is basically a wrapper on top of docker exec command. It simplifies execution command in docker containers by providing names for docker containers so you don't have to search them by running a status command or docker ps
.
If you don't want to execute specific command, by default exec command will use bash as a command (and redis-cli for redis container) so you will be connected to the container with interactive shell environment.
Available container names:
mariadb
php
varnish
nginx
ssl-terminator
redis
elasticsearch
oropensearch
(depending on your configuration)
Usage example
Last updated