24 lines
679 B
Text
24 lines
679 B
Text
|
|
# OCI Registry Module
|
||
|
|
|
||
|
|
export module commands.nu
|
||
|
|
export module service.nu
|
||
|
|
|
||
|
|
# Re-export main commands
|
||
|
|
export use commands.nu [
|
||
|
|
"oci-registry configure" "oci-registry health" "oci-registry init"
|
||
|
|
"oci-registry logs" "oci-registry namespace create"
|
||
|
|
"oci-registry namespace delete" "oci-registry namespaces"
|
||
|
|
"oci-registry start" "oci-registry status" "oci-registry stop"
|
||
|
|
"oci-registry test-pull" "oci-registry test-push"
|
||
|
|
]
|
||
|
|
export use service.nu [
|
||
|
|
start-oci-registry
|
||
|
|
stop-oci-registry
|
||
|
|
get-oci-registry-status
|
||
|
|
check-oci-registry-health
|
||
|
|
get-oci-registry-info
|
||
|
|
get-oci-registry-repositories
|
||
|
|
get-oci-repository-tags
|
||
|
|
run-oci-registry-gc
|
||
|
|
]
|