Advertisement
maxattax97

docker 20.10.10 / cgroups v1 / fakeroot

Apr 20th, 2023
923
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $ docker version
  2. Client:
  3.  Version:           20.10.10
  4.  API version:       1.41
  5.  Go version:        go1.17.2
  6.  Git commit:        b485636f4b
  7.  Built:             Tue Oct 26 03:44:01 2021
  8.  OS/Arch:           linux/amd64
  9.  Context:           default
  10.  Experimental:      true
  11.  
  12. Server:
  13.  Engine:
  14.   Version:          20.10.10
  15.   API version:      1.41 (minimum version 1.12)
  16.   Go version:       go1.17.2
  17.   Git commit:       e2f740de44
  18.   Built:            Tue Oct 26 03:43:48 2021
  19.   OS/Arch:          linux/amd64
  20.   Experimental:     false
  21.  containerd:
  22.   Version:          v1.7.0
  23.   GitCommit:        1fbd70374134b891f97ce19c70b6e50c7b9f4e0d.m
  24.  runc:
  25.   Version:          1.1.6
  26.   GitCommit:        
  27.  docker-init:
  28.   Version:          0.19.0
  29.   GitCommit:        de40ad0
  30.  
  31. $ docker info
  32. Client:
  33.  Context:    default
  34.  Debug Mode: false
  35.  Plugins:
  36.   buildx: Build with BuildKit (Docker Inc., v0.6.1-docker)
  37.  
  38. Server:
  39.  Containers: 151
  40.   Running: 1
  41.   Paused: 0
  42.   Stopped: 150
  43.  Images: 506
  44.  Server Version: 20.10.10
  45.  Storage Driver: overlay2
  46.   Backing Filesystem: extfs
  47.   Supports d_type: true
  48.   Native Overlay Diff: false
  49.   userxattr: false
  50.  Logging Driver: json-file
  51.  Cgroup Driver: cgroupfs
  52.  Cgroup Version: 1
  53.  Plugins:
  54.   Volume: local
  55.   Network: bridge host ipvlan macvlan null overlay
  56.   Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
  57.  Swarm: inactive
  58.  Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc
  59.  Default Runtime: runc
  60.  Init Binary: docker-init
  61.  containerd version: 1fbd70374134b891f97ce19c70b6e50c7b9f4e0d.m
  62.  runc version:
  63.  init version: de40ad0
  64.  Security Options:
  65.   seccomp
  66.    Profile: default
  67.  Kernel Version: 6.2.11-arch1-1
  68.  Operating System: Arch Linux
  69.  OSType: linux
  70.  Architecture: x86_64
  71.  CPUs: 24
  72.  Total Memory: 31.27GiB
  73.  Name: mocull-endeavor
  74.  ID: VUDR:URXR:LNY6:5ANR:5F5U:I7ET:POWR:IZTF:YJML:HL25:GTTI:TAQZ
  75.  Docker Root Dir: /var/lib/docker
  76.  Debug Mode: false
  77.  Registry: https://index.docker.io/v1/
  78.  Labels:
  79.  Experimental: false
  80.  Insecure Registries:
  81.   registry.batswireless.lcl:5001
  82.   127.0.0.0/8
  83.  Live Restore Enabled: false
  84.  
  85.  
  86. $ docker run --rm -it alpine sh
  87. / # apk update
  88. / # apk add fakeroot
  89. / # time fakeroot whoami
  90. root
  91. real    0m 0.00s
  92. user    0m 0.00s
  93. sys     0m 0.00s
  94. / # time fakeroot sh -c whoami
  95. root
  96. real    1m 46.91s
  97. user    0m 0.00s
  98. sys     0m 0.00s
  99. / # fakeroot -v
  100. fakeroot version 1.29
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement