Skip to content

Commit

Permalink
Merge pull request #4 from eczek/master
Browse files Browse the repository at this point in the history
add redis flush option
  • Loading branch information
lukaszolszewski authored Jan 22, 2018
2 parents 826224c + 9f76239 commit ee0c0ee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mage2docker.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ _mage2docker() {
compadd $(_docker_get_container_name)
;;
command)
compadd "$@" bash-www bash logs magento mage mage-cache mage-reindex mage-di mage-upgrade mage-report mage-log grunt watch rename rm restart stop inspect top mysqldump mysql ip
compadd "$@" bash-www bash logs magento mage mage-cache mage-reindex mage-di mage-upgrade mage-report mage-log grunt watch rename rm restart stop inspect top mysqldump mysql ip redis-flushall
;;
options)
case $words[3] in
Expand Down Expand Up @@ -113,6 +113,9 @@ mage2docker () {
mage-report)
docker exec -it -u www-data $1 cat var/report/$3
;;
redis-flushall)
docker exec -it $1 redis-cli flushall
;;
mage-log)
docker exec -it -u www-data $1 tail -f var/log/$3
;;
Expand Down

0 comments on commit ee0c0ee

Please sign in to comment.