Advertisement
Guest User

dockertutorial

a guest
Jul 19th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. H:\>docker info
  2. Containers: 0
  3. Running: 0
  4. Paused: 0
  5. Stopped: 0
  6. Images: 1
  7. Server Version: 18.09.2
  8. Storage Driver: overlay2
  9. Backing Filesystem: extfs
  10. Supports d_type: true
  11. Native Overlay Diff: true
  12. Logging Driver: json-file
  13. Cgroup Driver: cgroupfs
  14. Plugins:
  15. Volume: local
  16. Network: bridge host macvlan null overlay
  17. Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
  18. Swarm: inactive
  19. Runtimes: runc
  20. Default Runtime: runc
  21. Init Binary: docker-init
  22. containerd version: 9754871865f7fe2f4e74d43e2fc7ccd237edcbce
  23. runc version: 09c8266bf2fcf9519a651b04ae54c967b9ab86ec
  24. init version: fec3683
  25. Security Options:
  26. seccomp
  27. Profile: default
  28. Kernel Version: 4.9.125-linuxkit
  29. Operating System: Docker for Windows
  30. OSType: linux
  31. Architecture: x86_64
  32. CPUs: 2
  33. Total Memory: 1.934GiB
  34. Name: linuxkit-00155d6c4201
  35. ID: KC5S:GP7L:PL4E:VAZA:JCIR:SNQ6:OYV5:3EVK:6IX5:SKNM:5UMZ:XNOX
  36. Docker Root Dir: /var/lib/docker
  37. Debug Mode (client): false
  38. Debug Mode (server): true
  39. File Descriptors: 22
  40. Goroutines: 46
  41. System Time: 2019-07-19T11:17:53.3804533Z
  42. EventsListeners: 1
  43. HTTP Proxy: http://10.158.100.1:8080
  44. HTTPS Proxy: http://10.158.100.1:8080
  45. No Proxy: localhost, 127.0.0.1, ::1, nokia.com, *.nokia.com, nokia.net, *.nokia.net, nsn-net.net, *.nsn-net.net, nsn.com, *.nsn.com, nsn-rdnet.net, *.nsn-rdnet.net, alcatel-lucent.com, *.alcatel-lucent.com
  46. Registry: https://index.docker.io/v1/
  47. Labels:
  48. Experimental: false
  49. Insecure Registries:
  50. 127.0.0.0/8
  51. Live Restore Enabled: false
  52. Product License: Community Engine
  53.  
  54.  
  55. H:\>docker run --rm hello-world
  56.  
  57. Hello from Docker!
  58. This message shows that your installation appears to be working correctly.
  59.  
  60. To generate this message, Docker took the following steps:
  61. 1. The Docker client contacted the Docker daemon.
  62. 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
  63. (amd64)
  64. 3. The Docker daemon created a new container from that image which runs the
  65. executable that produces the output you are currently reading.
  66. 4. The Docker daemon streamed that output to the Docker client, which sent it
  67. to your terminal.
  68.  
  69. To try something more ambitious, you can run an Ubuntu container with:
  70. $ docker run -it ubuntu bash
  71.  
  72. Share images, automate workflows, and more with a free Docker ID:
  73. https://hub.docker.com/
  74.  
  75. For more examples and ideas, visit:
  76. https://docs.docker.com/get-started/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement