2024-10-26 12:07:57 +02:00
|
|
|
# crane
|
|
|
|
|
|
|
|
> Hulpmiddel voor het beheren van containerimages.
|
|
|
|
> Sommige subcommando's zoals `pull`, `push`, `copy`, enz. hebben hun eigen gebruiksdocumentatie.
|
|
|
|
> Meer informatie: <https://github.com/google/go-containerregistry/blob/main/cmd/crane/doc/crane.md/>.
|
|
|
|
|
|
|
|
- Voer een `crane` subcommando uit:
|
|
|
|
|
|
|
|
`crane {{subcommand}}`
|
|
|
|
|
|
|
|
- Sta het pushen van niet-distribueerbare (buitenlandse) lagen toe:
|
|
|
|
|
|
|
|
`crane --allow-nondistributable-artifacts {{subcommand}}`
|
|
|
|
|
|
|
|
- Sta het ophalen van afbeeldingsreferenties zonder TLS toe:
|
|
|
|
|
|
|
|
`crane --insecure {{subcommand}}`
|
|
|
|
|
|
|
|
- Geef het platform op in de vorm os/arch{{/variant}}{{:osversion}} (bijv. linux/amd64). (standaard alle):
|
|
|
|
|
|
|
|
`crane --platform {{platform}} {{subcommand}}`
|
|
|
|
|
|
|
|
- Schakel debuglogs in voor een subcommando:
|
|
|
|
|
2025-03-14 09:18:08 +02:00
|
|
|
`crane {{[-v|--verbose]}} {{subcommand}}`
|
2024-10-26 12:07:57 +02:00
|
|
|
|
2025-05-05 23:09:22 +02:00
|
|
|
- Toon de help voor een subcommando:
|
2024-10-26 12:07:57 +02:00
|
|
|
|
2025-03-14 09:18:08 +02:00
|
|
|
`crane {{[-h|--help]}} {{subcommand}}`
|