We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 96eadb0 + e40c4fe commit 56c1f62Copy full SHA for 56c1f62
profiles/diun
@@ -0,0 +1,21 @@
1
+# DIUN Docker Socket Access Profile
2
+#
3
+# This profile grants DIUN (Docker Image Update Notifier) minimal read-only access.
4
+# Documentation: https://crazymax.dev/diun/
5
6
+# - all access is restricted to GET and HEAD methods (read-only)
7
+# - image access is limited to metadata queries only
8
+
9
+# Method Path
10
11
+### Health check ###
12
+HEAD /_ping
13
14
+### Docker version info ###
15
+GET /(v\d+\.\d+/)?version
16
17
+### Filtered container list ###
18
+GET /(v\d+\.\d+/)?containers/json\?filters=.*status.*
19
20
+### Image metadata (broad read-only) ###
21
+GET /(v\d+\.\d+/)?images(\?.*|/.*)?
0 commit comments