-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lukasz Olszewski
committed
Jan 30, 2017
1 parent
1e0a24c
commit 17c062b
Showing
1 changed file
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
# Mage2Docker | ||
# | ||
# Plugin for Oh-My-Zsh | ||
|
||
|
||
_docker_get_container_name () { | ||
docker ps | awk '{if(NR>1) print $NF}' | ||
} | ||
|
||
_mage2docker_magento () { | ||
compadd `docker exec $1 bin/magento list | sed 's/\x1b\[[0-9;]*m//g' | awk '{if(NR > 15 && /:/) print $1}'` | ||
} | ||
|
||
_mage2docker_mage() { | ||
docker exec -it -u www-data $1 bin/magento $2 | ||
} | ||
|
||
_mage2docker() { | ||
local curcontext="$curcontext" state line | ||
typeset -A opt_args | ||
|
||
_arguments \ | ||
'1: :->containerName'\ | ||
'2: :->command' \ | ||
'3: :->options' | ||
|
||
case $state in | ||
containerName) | ||
compadd $(_docker_get_container_name) | ||
;; | ||
command) | ||
compadd "$@" bash-www bash logs magento mage mage-cache mage-di mage-upgrade grunt rename rm restart stop inspect top | ||
;; | ||
options) | ||
case $words[3] in | ||
mage) | ||
_mage2docker_magento $words[2] | ||
;; | ||
esac | ||
esac | ||
} | ||
|
||
|
||
mage2docker () { | ||
case $2 in | ||
restart|stop|inspect|rm|rename|top) | ||
echo cmd=$2 | ||
docker $2 $1 | ||
;; | ||
logs) | ||
docker logs -f $1 | ||
;; | ||
bash) | ||
docker exec -it $1 bash | ||
;; | ||
bash-www) | ||
docker exec -it -u www-data $1 bash | ||
;; | ||
magento) | ||
docker exec -it -u www-data $1 bin/magento | ||
;; | ||
mage)$ | ||
_mage2docker_mage $1 $3 | ||
;; | ||
mage-cache) | ||
_mage2docker_mage $1 cache:clean | ||
;; | ||
mage-upgrade) | ||
_mage2docker_mage $1 setup:upgrade | ||
;; | ||
mage-di) | ||
_mage2docker_mage $1 setup:di:compile | ||
;; | ||
mage-deploy) | ||
_mage2docker_mage $1 setup:static-content:deploy | ||
;; | ||
grunt) | ||
docker exec -it -u www-data $1 grunt | ||
esac | ||
|
||
} | ||
|
||
compdef _mage2docker mage2docker | ||
|
||
alias m2d='mage2docker' |