Skip to content

Commit

Permalink
Merge pull request #6 from Draniu/patch-2
Browse files Browse the repository at this point in the history
workaround bash size
  • Loading branch information
AdamHyski authored Jun 7, 2018
2 parents 9623831 + 96dcdf0 commit ff6ac3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mage2docker.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ mage2docker () {
docker logs -f $1
;;
bash)
docker exec -it -u root $1 bash
docker exec -it -e LINES=$(tput lines) -e COLUMNS=$(tput cols) -u root $1 bash
;;
bash-www)
docker exec -it -u www-data $1 bash
docker exec -it -e LINES=$(tput lines) -e COLUMNS=$(tput cols) -u www-data $1 bash
;;
magento)
docker exec -it -u www-data $1 bin/magento
Expand Down

0 comments on commit ff6ac3b

Please sign in to comment.