Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. ---
  2. layout: post
  3. title: "My Title"
  4. author: "@author"
  5. date: 2019-07-08
  6. categories: template
  7. tags: [linux,operations,developer,template]
  8. image:
  9. term:
  10. img:
  11. ---
  12.  
  13. > **Difficulty**: Intermediate
  14. > **Time**: Approximately 5 minutes
  15.  
  16. ---
  17. Short description of what's the attentees will face
  18.  
  19. Summary in this exercise:
  20. - [Step 1 - XXX](#step1)
  21. - [Step X - XXX](#stepX)
  22.  
  23.  
  24. ---
  25.  
  26. Tips:
  27.  
  28. Code snippets are shown in one of three ways throughout this environment:
  29.  
  30.  
  31. 1. <button type="button" onclick="pwd.createInstance({ImageName:'franela/dind'});">New background container</button> IP will be incremented by one on last bit (10.XX.XX.X+1)
  32. 2. Code that looks like `this` is sample code snippets that is usually part of an explanation.
  33. 3. Code that appears in box like the one below can be clicked on and it will automatically be typed in to the appropriate terminal window:
  34. ```.term1
  35. uname -a
  36. ```
  37. 4. Code appearing in windows like the one below is code that you should type in yourself. Usually there will be a unique ID or other bit your need to enter which we cannot supply. Items appearing in <> are the pieces you should substitute based on the instructions.
  38. ```
  39. docker container start <container ID>
  40. ```
  41. 5. You can link to apps that run in a terminal that expose a port for linking purposes. The pattern is:
  42. ```
  43. [linktext](/){:data-term=".termN"}{:data-port="XXXX"}
  44. ```
  45.  
  46. ## <a name="step1"></a>Step 1 - XXX
  47. ## <a name="stepX"></a>Step X - XXX
  48.  
  49. {:.quiz}
  50. Where do images get pulled from by default?
  51. - ( ) Docker Registry
  52. - ( ) Something you have set up on your machine
  53. - ( ) There is no default
  54. - (x) Docker Store
  55.  
  56. {:.quiz}
  57. Which command lists your Docker images?
  58. - (x) docker image ls
  59. - ( ) docker run
  60. - ( ) docker container ls
  61.  
  62. {:.quiz}
  63. A stack can:
  64. - \[x\] be deployed from the commandline
  65. - \[x\] can use the compose file format to deploy
  66. - \[ \] can run a Dockerfile
  67. - \[ \] be used to manage your hosts
  68. - \[x\] can be used to manage services over multiple nodes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement