initial commit
This commit is contained in:
15
custom-cmds-in-ubuntu/bin_examples/dockerrm
Normal file
15
custom-cmds-in-ubuntu/bin_examples/dockerrm
Normal file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
###################################
|
||||
############ by Sthope ############
|
||||
###################################
|
||||
|
||||
## nano ~/.bashrc
|
||||
## and add this to the end of the file: export PATH=$PATH:~/bin
|
||||
## sudo chmod +x ~/bin/*;su -l $USER
|
||||
|
||||
#### USAGE
|
||||
# Type "dockerrm Container_Name" to Stop and Remove running Docker Container
|
||||
# example: dockerrm Container_Name
|
||||
|
||||
docker stop $1
|
||||
docker rm $1
|
Reference in New Issue
Block a user