Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. # Docker, The Hard Way
  2.  
  3. In this series, I wan't to share what I know about Docker.
  4.  
  5. > This is the __Hard Way__ of learning Docker. if you are in hurry, this tutorial might not be a good choice for you
  6.  
  7.  
  8. What should you know before using Docker?
  9.  
  10. There are couple of things you should now, before diving into Docker:
  11. - How OS Works
  12. - What is Linux (Kernel)
  13. - What is Virtualization
  14. - Init System, Systemd, PID 1 and Signals
  15.  
  16. When using Docker, we also use __Network__ and __Volumes__ to interact with it. we also use __Shell__ a lot. so, for the first step I'm going to talk about these stuff.
  17.  
  18.  
  19.  
  20. ## OS and Linux:
  21.  
  22. blah blah
  23.  
  24.  
  25. ### How OS works
  26.  
  27. blah blha
  28.  
  29. ```shell
  30. echo 1
  31. ```
  32.  
  33.  
  34. ```python
  35. print 1
  36. ```
  37.  
  38. ```js
  39. var i = 1
  40. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement