forked from bregman-arie/devops-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/bregman-arie/devops-resou…
- Loading branch information
Showing
2 changed files
with
27 additions
and
1 deletion.
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
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,26 @@ | ||
# Docker | ||
|
||
## Articles | ||
|
||
Name | Comments | ||
:------ |:--------: | ||
[Docker CheatSheet](https://cheatsheet.dennyzhang.com/cheatsheet-docker-a4) | | ||
[Everything you need to know about containers](https://medium.com/faun/everything-you-need-to-know-about-containers-7655badb4307) | | ||
[A container networking overview](https://jvns.ca/blog/2016/12/22/container-networking) | | ||
[My Docker Cheat Sheet](https://medium.com/statuscode/dockercheatsheet-9730ce03630d) | | ||
[Docker Networking Deep Dive](http://100daysofdevops.com/21-days-of-docker-day-19-docker-networking-deep-dive/?fbclid=IwAR19KJWwhZjulbn7JNbBYLFxKFf-x0v25TSc-_bOJ6YieUND4A6UZcBSUhA) | | ||
|
||
## Projects | ||
|
||
Name | Comments | ||
:------ |:--------: | ||
[awesome-docker](https://github.com/veggiemonk/awesome-docker) | | ||
|
||
|
||
### Cheatsheet | ||
|
||
* Stop and remove all containers: `docker container stop $(docker container ls -aq)` | ||
* Run container with bash shell: `docker run -ti ubuntu:latest bash` | ||
* Check how many containers are running: `docker info` | ||
* Check the docker images on your system: `docker images` | ||
* Cleanup everything: `docker system prune -a -f` |