mirror of
https://github.com/garabik/grc.git
synced 2024-11-10 21:26:52 +01:00
44 lines
884 B
Plaintext
44 lines
884 B
Plaintext
# HEADERS
|
|
regexp=(?:\s|^)(REPOSITORY|TAG|IMAGE ID|CREATED|SIZE)(?:\s|$)
|
|
colours=default,underline
|
|
=====
|
|
# REPO, TAG
|
|
regexp=^([a-z]+\/?[^\s]+)\s+([^\s]+)
|
|
colours=default,bold white,cyan,bold black
|
|
=======
|
|
# REPO, TAG, IMAGE ID
|
|
regexp=^([a-z]+\/?[^\s]+)\s+([^\s]+)\s+(\w+)
|
|
colours=default,bold white,bright_cyan,bright_black
|
|
=====
|
|
# latest
|
|
regexp=\s+(latest)\s+
|
|
colours=unchanged,cyan
|
|
=====
|
|
# REPOSITORY (Image name)
|
|
regexp=^(?:([a-z\-_0-9]+)/)*([a-z\-_0-9]+)\s
|
|
colours=default,yellow,bright_white
|
|
=====
|
|
# images without name
|
|
regexp=^<none>.*$
|
|
colours=bold red
|
|
=====
|
|
# Size 'K'
|
|
regexp=\s\d*[\.,]?\d*\sKB?
|
|
colours=green
|
|
======
|
|
# Size 'M', 2 digits
|
|
regexp=\s\d{1,2}[\.,]?\d*\sMB?
|
|
colours=green
|
|
======
|
|
# Size 'M' 3+ digits
|
|
regexp=\s\d{3,4}[\.,]?\d*\sMB?
|
|
colours=yellow
|
|
======
|
|
# Size 'G'
|
|
regexp=\s\d*[\.,]?\d*\sGB?
|
|
colours=red
|
|
======
|
|
# Date Ago
|
|
regexp=(?:\s{2}|^)(?:\w+\s)+ago
|
|
colours=cyan
|