Advertisement
fatherlinux

Untitled

Feb 11th, 2019
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. Terminal #1
  2. =======================================================================
  3. [root@fedora ~]# which docker
  4. /usr/bin/docker
  5.  
  6. [root@fedora ~]# rpm -qf /usr/bin/docker
  7. moby-engine-18.06.0-1.ce.git0ffa825.fc29.x86_64
  8.  
  9. docker run -it fedora bash
  10.  
  11. podman run -it fedora bash
  12.  
  13. Terminal #1
  14. =======================================================================
  15. Docker Output
  16.  
  17. [root@fedora ~]# ps -efZ | grep bash
  18. unconfined_u:system_r:container_runtime_t:s0-s0:c0.c1023 root 27937 985 2 13:06 pts/0 00:00:00 docker run -it fedora bash
  19. system_u:system_r:spc_t:s0 root 27972 27954 1 13:06 pts/0 00:00:00 bash
  20.  
  21. Podman Output
  22.  
  23. [root@fedora ~]# ps -efZ | grep bash
  24. unconfined_u:system_r:container_runtime_t:s0-s0:c0.c1023 root 28073 985 0 13:06 pts/0 00:00:00 podman run -it fedora bash
  25. system_u:system_r:container_t:s0:c326,c566 root 28160 28148 0 13:06 pts/0 00:00:00 bash
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement