-
-
Save vshulkin/bd8ee35cf360b6f9dc74ee27d62a9e83 to your computer and use it in GitHub Desktop.
Revisions
-
vshulkin revised this gist
Sep 12, 2019 . 1 changed file with 8 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,3 @@ alias dm='docker-machine' alias dmx='docker-machine ssh' alias dk='docker' @@ -99,11 +97,17 @@ dkstats() { } dke() { if [ $# -eq 0 ] then echo "Usage dke {containerID}" else docker exec -it $1 /bin/sh fi } dkexe() { if [ $# -eq 0 ] then echo "Usage dke {containerID}" else docker exec -it $1 $2 fi } dkreboot() { -
cjus revised this gist
Jul 9, 2018 . 1 changed file with 30 additions and 30 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -18,64 +18,64 @@ dkln() { } dkp() { if [ ! -f .dockerignore ]; then echo "Warning, .dockerignore file is missing." read -p "Proceed anyway?" fi if [ ! -f package.json ]; then echo "Warning, package.json file is missing." read -p "Are you in the right directory?" fi VERSION=`cat package.json | jq .version | sed 's/\"//g'` NAME=`cat package.json | jq .name | sed 's/\"//g'` LABEL="$1/$NAME:$VERSION" docker build --build-arg NPM_TOKEN=${NPM_TOKEN} -t $LABEL . read -p "Press enter to publish" docker push $LABEL } dkpnc() { if [ ! -f .dockerignore ]; then echo "Warning, .dockerignore file is missing." read -p "Proceed anyway?" fi if [ ! -f package.json ]; then echo "Warning, package.json file is missing." read -p "Are you in the right directory?" fi VERSION=`cat package.json | jq .version | sed 's/\"//g'` NAME=`cat package.json | jq .name | sed 's/\"//g'` LABEL="$1/$NAME:$VERSION" docker build --build-arg NPM_TOKEN=${NPM_TOKEN} --no-cache=true -t $LABEL . read -p "Press enter to publish" docker push $LABEL } dkpl() { if [ ! -f .dockerignore ]; then echo "Warning, .dockerignore file is missing." read -p "Proceed anyway?" fi if [ ! -f package.json ]; then echo "Warning, package.json file is missing." read -p "Are you in the right directory?" fi VERSION=`cat package.json | jq .version | sed 's/\"//g'` NAME=`cat package.json | jq .name | sed 's/\"//g'` LATEST="$1/$NAME:latest" docker build --build-arg NPM_TOKEN=${NPM_TOKEN} --no-cache=true -t $LATEST . read -p "Press enter to publish" docker push $LATEST } dkclean() { -
cjus created this gist
Jul 9, 2018 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,135 @@ #!/bin/sh alias dm='docker-machine' alias dmx='docker-machine ssh' alias dk='docker' alias dki='docker images' alias dks='docker service' alias dkrm='docker rm' alias dkl='docker logs' alias dklf='docker logs -f' alias dkflush='docker rm `docker ps --no-trunc -aq`' alias dkflush2='docker rmi $(docker images --filter "dangling=true" -q --no-trunc)' alias dkt='docker stats --format "table {{.Name}}\t{{.CPUPerc}}\t{{.MemUsage}}\t{{.NetIO}}"' alias dkps="docker ps --format '{{.ID}} ~ {{.Names}} ~ {{.Status}} ~ {{.Image}}'" dkln() { docker logs -f `docker ps | grep $1 | awk '{print $1}'` } dkp() { if [ ! -f .dockerignore ]; then echo "Warning, .dockerignore file is missing." read -p "Proceed anyway?" fi if [ ! -f package.json ]; then echo "Warning, package.json file is missing." read -p "Are you in the right directory?" fi VERSION=`cat package.json | jq .version | sed 's/\"//g'` NAME=`cat package.json | jq .name | sed 's/\"//g'` LABEL="$1/$NAME:$VERSION" docker build --build-arg NPM_TOKEN=${NPM_TOKEN} -t $LABEL . read -p "Press enter to publish" docker push $LABEL } dkpnc() { if [ ! -f .dockerignore ]; then echo "Warning, .dockerignore file is missing." read -p "Proceed anyway?" fi if [ ! -f package.json ]; then echo "Warning, package.json file is missing." read -p "Are you in the right directory?" fi VERSION=`cat package.json | jq .version | sed 's/\"//g'` NAME=`cat package.json | jq .name | sed 's/\"//g'` LABEL="$1/$NAME:$VERSION" docker build --build-arg NPM_TOKEN=${NPM_TOKEN} --no-cache=true -t $LABEL . read -p "Press enter to publish" docker push $LABEL } dkpl() { if [ ! -f .dockerignore ]; then echo "Warning, .dockerignore file is missing." read -p "Proceed anyway?" fi if [ ! -f package.json ]; then echo "Warning, package.json file is missing." read -p "Are you in the right directory?" fi VERSION=`cat package.json | jq .version | sed 's/\"//g'` NAME=`cat package.json | jq .name | sed 's/\"//g'` LATEST="$1/$NAME:latest" docker build --build-arg NPM_TOKEN=${NPM_TOKEN} --no-cache=true -t $LATEST . read -p "Press enter to publish" docker push $LATEST } dkclean() { docker rm $(docker ps --all -q -f status=exited) docker volume rm $(docker volume ls -qf dangling=true) } dkprune() { docker system prune -af } dktop() { docker stats --format "table {{.Container}}\t{{.Name}}\t{{.CPUPerc}} {{.MemPerc}}\t{{.NetIO}}\t{{.BlockIO}}" } dkstats() { if [ $# -eq 0 ] then docker stats --no-stream; else docker stats --no-stream | grep $1; fi } dke() { docker exec -it $1 /bin/sh } dkexe() { docker exec -it $1 $2 } dkreboot() { osascript -e 'quit app "Docker"' countdown 2 open -a Docker echo "Restarting Docker engine" countdown 120 } dkstate() { docker inspect $1 | jq .[0].State } dksb() { docker service scale $1=0 sleep 2 docker service scale $1=$2 } mongo() { mongoLabel=`docker ps | grep mongo | awk '{print $NF}'` docker exec -it $mongoLabel mongo "$@" } redis() { redisLabel=`docker ps | grep redis | awk '{print $NF}'` docker exec -it $redisLabel redis-cli }