Skip to content

Commit

Permalink
workaround bash size
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamHyski authored May 9, 2018
1 parent 9623831 commit 96dcdf0
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 96dcdf0

Please sign in to comment.