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
{ | |
"containerDefinitions": [ | |
{ | |
"volumesFrom": [], | |
"portMappings": [], | |
"command": [ | |
"-t <TOKEN>", | |
"-j", | |
"--skipByName ecs-agent" | |
], |
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
#http://blog.yohanliyanage.com/2015/05/docker-clean-up-after-yourself/ | |
docker rm -v $(docker ps -a -q -f status=exited) | |
docker rmi $(docker images -f "dangling=true" -q) | |
docker rmi $(docker images | grep NAME | awk '{print $3}') |
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
cd $GOPATH/src | |
mkdir vektra && cd vektra && git clone https://github.com/corentone/mockery.git | |
cd mockery && git checkout in-place-differentfolder && make install | |
cd $GOPATH/src | |
mkdir JyBP | |
git clone https://github.com/JyBP/keeptree.git && cd keeptree | |
mockery -all -keeptree -output ./cmd/mocks -dir ./ |