1
0
mirror of https://github.com/pcvolkmer/docker-pps.git synced 2025-04-19 17:56:50 +00:00

Do not show image SHA256 hashes

This commit is contained in:
Paul-Christian Volkmer 2022-03-02 11:42:41 +01:00
parent d79cc93adf
commit 71af908d16

View File

@ -86,7 +86,7 @@ func main() {
for _, process := range tops.Processes {
processes = append(processes, Process{
ContainerID: container.ID,
Image: container.Image,
Image: strings.Split(container.Image, "@sha256")[0],
PID: process[pid],
UID: process[uid],
Command: process[cmd],