Advertisement
sandervanvugt

Untitled

Jun 22nd, 2021
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1. o/bitnami/nginx latest e5edd424328a 9 hours ago 93.3 MB
  2. registry.access.redhat.com/ubi8 latest 272209ff0ae5 2 weeks ago 234 MB
  3. [ansible@anspod luth]$ history
  4. 1 git clone https://github.com/sandervanvugt/ex180
  5. 2 cd ex180/
  6. 3 ls
  7. 4 cd ..
  8. 5 cat /etc/redhat-release
  9. 6 free -m
  10. 7 df -h
  11. 8 lscpu
  12. 9 sudo podman search ubi
  13. 10 sudo podman search ubi | less
  14. 11 sudo podman pull ubi8/ubi
  15. 12 sudo podman images
  16. 13 podman images
  17. 14 sudo podman login registry.access.redhat.com
  18. 15 history
  19. 16 git clone https://github.com/sandervanvugt/ex180
  20. 17 cd ex180/
  21. 18 ls
  22. 19 cd ..
  23. 20 git clone https://github.com/sandervanvugt/luth
  24. 21 cd luth
  25. 22 ./countdown 12
  26. 23 podman run ubi8
  27. 24 podman ps
  28. 25 podman ps -a
  29. 26 podman run ubi8/ubi echo hello world
  30. 27 podman ps
  31. 28 podman ps -a
  32. 29 podman run nginx
  33. 30 podman search nginx
  34. 31 podman login docker.io
  35. 32 podman run nginx
  36. 33 podman run quay.io/bitnami/nginx
  37. 34 podman run -d quay.io/bitnami/nginx
  38. 35 podman ps
  39. 36 podman run -it ubi8/ubi /bin/bash
  40. 37 podman ps
  41. 38 history
  42. 39 podman ps
  43. 40 podman exec -it hardcore_williamson /bin/bash
  44. 41 podman run -d quay.io/bitnami/nginx
  45. 42 podman ps
  46. 43 sudo ip a
  47. 44 podman inspect -l
  48. 45 podman inspect -l -f "{{.NetworkSettings.IPAddress}}"
  49. 46 sudo podman run -d nginx
  50. 47 sudo podman run -d quay.io/bitnami/nginx
  51. 48 sudo podman ps
  52. 49 sudo ip a
  53. 50 sudo podman inspect -l -f "{{.NetworkSettings.IPAddress}}"
  54. 51 podman run -it busybox sh
  55. 52 podman run -it quay.io/busybox sh
  56. 53 podman run -it ubi8/ubi sh
  57. 54 podman ps
  58. 55 ps fax
  59. 56 ps -ef
  60. 57 pstree
  61. 58 sudo pstree
  62. 59 ps fax | grep runc
  63. 60 podman ps
  64. 61 sudo podman ps
  65. 62 podman search mariadb
  66. 63 sudo podman run registry.redhat.io/rhscl/mariadb-101-rhel7
  67. 64 sudo podman login registry.redhat.io
  68. 65 sudo podman run registry.redhat.io/rhscl/mariadb-101-rhel7
  69. 66 sudo podman ps
  70. 67 sudo podman ps -a
  71. 68 sudo podman logs wonderful_mclaren
  72. 69 sudo podman run -d -e MYSQL_ROOT_PASSWORD=password registry.redhat.io/rhscl/mariadb-101-rhel7
  73. 70 sudo podman ps
  74. 71 ./countdown 12
  75. 72 sudo vim /etc/containers/registries.conf
  76. 73 podman images
  77. 74 sudo podman images
  78. 75 podman rmi registry.access.redhat.com/ubi8/ubi
  79. 76 podman rmi registry.access.redhat.com/ubi8
  80. 77 sudo podman pull rhscl/mysql-57-rhel7:5.7
  81. 78 sudo podman run registry.access.redhat.com/rhscl/mysql-57-rhel7:5.7
  82. 79 sudo podman run registry.access.redhat.com/rhscl/mysql-57-rhel7
  83. 80 sudo yum install -y skopeo
  84. 81 skopeo inspect registry.access.redhat.com/rhscl/mysql-57-rhel7:5.7
  85. 82 skopeo inspect docker://registry.access.redhat.com/rhscl/mysql-57-rhel7
  86. 83 podman run bitnami/nginx --name newnginx
  87. 84 podman run --name newnginx bitnami/nginx
  88. 85 podman run -d --name newnginx bitnami/nginx
  89. 86 podman run -d --name newnginx2 bitnami/nginx
  90. 87 podman ps
  91. 88 podman exec -it newnginx2 sh
  92. 89 podman diff newnginx2
  93. 90 podman commit newnginx2
  94. 91 podman images
  95. 92 history
  96.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement