Last active
September 24, 2019 11:12
-
-
Save ArgonQQ/baa503d246f3066b19a20042eb809e98 to your computer and use it in GitHub Desktop.
Revisions
-
ArgonQQ revised this gist
Sep 24, 2019 . 1 changed file with 8 additions and 8 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,21 +1,21 @@ eval will set the variable to use Docker without the need to start "Docker Quickstart Terminal" eval takes a string as its argument, and evaluates it as if you'd typed that string on a command line. (If you pass several arguments, they are first joined with spaces between them.) eval $(docker-machine env) ## Stop all docker container docker stop $(docker ps -a -q) ## Delete all docker container docker rm $(docker ps -a -q) ## Delete all images docker rmi $(docker images -q) ## show Volume Mounts docker inspect -f '{{ .Mounts }}' CONTAINERNAME ## Removes all Volumes docker volume rm $(docker volume ls -qf dangling=true) # Updates all Images -
ArgonQQ renamed this gist
Sep 24, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ArgonQQ renamed this gist
Jan 22, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ArgonQQ renamed this gist
Jan 22, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ArgonQQ revised this gist
Dec 18, 2016 . 1 changed file with 3 additions and 3 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 @@ -15,11 +15,11 @@ docker rmi $(docker images -q) # show Volume Mounts docker inspect -f '{{ .Mounts }}' CONTAINERNAME # Removes all Volumes docker volume rm $(docker volume ls -qf dangling=true) # Updates all Images docker images | awk '{print $1}'|grep -v "REPOSITORY" |xargs -L1 docker pull # Bash Completion curl -L https://raw.githubusercontent.com/docker/compose/$(docker-compose version --short)/contrib/completion/bash/docker-compose > /etc/bash_completion.d/docker-compose -
ArgonQQ revised this gist
Dec 18, 2016 . 1 changed file with 5 additions and 2 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 @@ -3,12 +3,15 @@ # (If you pass several arguments, they are first joined with spaces between them.) eval $(docker-machine env) # Stop all docker container docker stop $(docker ps -a -q) # Delete all docker container docker rm $(docker ps -a -q) # Delete all images docker rmi $(docker images -q) # show Volume Mounts docker inspect -f '{{ .Mounts }}' CONTAINERNAME -
ArgonQQ revised this gist
Jul 4, 2016 . 1 changed file with 0 additions and 22 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,22 +0,0 @@ -
ArgonQQ revised this gist
Jul 4, 2016 . 1 changed file with 16 additions and 16 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,22 +1,22 @@ eval will set the variable to use Docker without the need to start "Docker Quickstart Terminal" eval takes a string as its argument, and evaluates it as if you'd typed that string on a command line. (If you pass several arguments, they are first joined with spaces between them.) ### eval $(docker-machine env) stop all docker container ### docker stop $(docker ps -a -q) rm all docker container ### docker rm $(docker ps -a -q) show Volume Mounts ### docker inspect -f '{{ .Mounts }}' CONTAINERNAME Removes all Volumes ### docker volume rm $(docker volume ls -qf dangling=true) Updates all Images ### docker images | awk '{print $1}'|grep -v "REPOSITORY" |xargs -L1 docker pull Bash Completion ### curl -L https://raw.githubusercontent.com/docker/compose/$(docker-compose version --short)/contrib/completion/bash/docker-compose > /etc/bash_completion.d/docker-compose -
ArgonQQ revised this gist
Jul 4, 2016 . 1 changed file with 22 additions and 0 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 @@ -0,0 +1,22 @@ # eval will set the variable to use Docker without the need to start "Docker Quickstart Terminal" # eval takes a string as its argument, and evaluates it as if you'd typed that string on a command line. # (If you pass several arguments, they are first joined with spaces between them.) eval $(docker-machine env) # stop all docker container docker stop $(docker ps -a -q) # rm all docker container docker rm $(docker ps -a -q) ### show Volume Mounts docker inspect -f '{{ .Mounts }}' CONTAINERNAME #Removes all Volumes docker volume rm $(docker volume ls -qf dangling=true) #Updates all Images docker images | awk '{print $1}'|grep -v "REPOSITORY" |xargs -L1 docker pull #Bash Completion curl -L https://raw.githubusercontent.com/docker/compose/$(docker-compose version --short)/contrib/completion/bash/docker-compose > /etc/bash_completion.d/docker-compose -
ArgonQQ revised this gist
Jun 24, 2016 . 1 changed file with 4 additions and 1 deletion.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 @@ -16,4 +16,7 @@ docker inspect -f '{{ .Mounts }}' CONTAINERNAME docker volume rm $(docker volume ls -qf dangling=true) #Updates all Images docker images | awk '{print $1}'|grep -v "REPOSITORY" |xargs -L1 docker pull #Bash Completion curl -L https://raw.githubusercontent.com/docker/compose/$(docker-compose version --short)/contrib/completion/bash/docker-compose > /etc/bash_completion.d/docker-compose -
ArgonQQ revised this gist
Jun 8, 2016 . 1 changed file with 1 addition and 1 deletion.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 @@ -16,4 +16,4 @@ docker inspect -f '{{ .Mounts }}' CONTAINERNAME docker volume rm $(docker volume ls -qf dangling=true) #Updates all Images docker images | awk '{print $1}'|grep -v "REPOSITORY" |xargs -L1 docker pull -
ArgonQQ revised this gist
Jun 8, 2016 . 1 changed file with 1 addition and 1 deletion.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 @@ -16,4 +16,4 @@ docker inspect -f '{{ .Mounts }}' CONTAINERNAME docker volume rm $(docker volume ls -qf dangling=true) #Updates all Images docker images | awk '{print $3}'|grep -v "IMAGE" |xargs -L1 docker pull -
ArgonQQ revised this gist
Jun 8, 2016 . 1 changed file with 1 addition and 1 deletion.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 @@ -16,4 +16,4 @@ docker inspect -f '{{ .Mounts }}' CONTAINERNAME docker volume rm $(docker volume ls -qf dangling=true) #Updates all Images docker images | awk '{print $1}' | grep -v REPOSITORY | xargs -L1 docker pull -
ArgonQQ revised this gist
Jun 8, 2016 . 1 changed file with 1 addition and 1 deletion.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 @@ -15,5 +15,5 @@ docker inspect -f '{{ .Mounts }}' CONTAINERNAME #Removes all Volumes docker volume rm $(docker volume ls -qf dangling=true) #Updates all Images docker images | awk '{print $1}' | xargs -L1 docker pull -
ArgonQQ revised this gist
Jun 8, 2016 . 1 changed file with 4 additions and 1 deletion.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 @@ -13,4 +13,7 @@ docker rm $(docker ps -a -q) docker inspect -f '{{ .Mounts }}' CONTAINERNAME #Removes all Volumes docker volume rm $(docker volume ls -qf dangling=true) #Update all Images docker images | awk '{print $1}' | xargs -L1 docker pull -
ArgonQQ revised this gist
Apr 20, 2016 . 1 changed file with 1 addition and 1 deletion.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,4 +1,4 @@ # eval will set the variable to use Docker without the need to start "Docker Quickstart Terminal" # eval takes a string as its argument, and evaluates it as if you'd typed that string on a command line. # (If you pass several arguments, they are first joined with spaces between them.) eval $(docker-machine env) -
ArgonQQ revised this gist
Apr 20, 2016 . 1 changed file with 6 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,13 +1,15 @@ # Will set the variable to use Docker without the need to start "Docker Quickstart Terminal" # eval takes a string as its argument, and evaluates it as if you'd typed that string on a command line. # (If you pass several arguments, they are first joined with spaces between them.) eval $(docker-machine env) # stop all docker container docker stop $(docker ps -a -q) # rm all docker container docker rm $(docker ps -a -q) # show Volume Mounts docker inspect -f '{{ .Mounts }}' CONTAINERNAME #Removes all Volumes -
ArgonQQ revised this gist
Apr 20, 2016 . 1 changed file with 3 additions and 0 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,3 +1,6 @@ #Will set the variable to use Docker without the need to start "Docker Quickstart Terminal" eval $(docker-machine env) #stop all docker container docker stop $(docker ps -a -q) -
ArgonQQ revised this gist
Apr 20, 2016 . 1 changed file with 4 additions and 1 deletion.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 @@ -5,4 +5,7 @@ docker stop $(docker ps -a -q) docker rm $(docker ps -a -q) #show Volume Mounts docker inspect -f '{{ .Mounts }}' CONTAINERNAME #Removes all Volumes docker volume rm $(docker volume ls -qf dangling=true) -
ArgonQQ revised this gist
Apr 20, 2016 . 1 changed file with 5 additions and 1 deletion.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,4 +1,8 @@ #stop all docker container docker stop $(docker ps -a -q) #rm all docker container docker rm $(docker ps -a -q) #show Volume Mounts docker inspect -f '{{ .Mounts }}' CONTAINERNAME -
ArgonQQ created this gist
Apr 15, 2016 .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,4 @@ #stop all docker container docker stop $(docker ps -a -q) #rm all docker container docker rm $(docker ps -a -q)