|
- How to push a tar archive to private docker registry?
The three tools I know of for working with registries without a docker engine are crane from Google, skopeo from RedHat, and regclient from myself The workflow that's needed is to extract the tar, push each layer and config, and then push the manifests
- How to get a list of images on docker registry v2 - Stack Overflow
This threads dates back a long time, the most recents tools that one should consider are skopeo and crane skopeo supports signing and has many other features, while crane is a bit more minimalistic and I found it easier to integrate with in a simple shell script
- How can I list all tags for a Docker image on a remote registry?
UPDATE Thanks for @degelf's advice Here is the shell script #! bin bash if [ $# -lt 1 ] then cat << HELP dockertags -- list all tags for a Docker image on a remote registry
- rest - 400 BAD request HTTP error code meaning? - Stack Overflow
A 400 means that the request was malformed In other words, the data stream sent by the client to the server didn't follow the rules
- How to execute a stored procedure within C# program
I want to execute this stored procedure from a C# program I have written the following stored procedure in a SqlServer query window and saved it as stored1: use master go create procedure dbo
- docker - DockerHub: sha digest doesnt match - Stack Overflow
To get that digest, tools like regclient, crane, and skopeo can be used And buildx also includes docker buildx imagetools inspect that can do this, but note that it pulls the manifest which counts as an image pull for rate limits
- c++ - Undefined reference to vtable - Stack Overflow
This is a mis-feature in GCC That is, the G++ compiler itself cannot complain about undefined virtual methods, since they can be defined elsewhere
- Convert a string to datetime in PowerShell - Stack Overflow
If like me, you get the time string like this 20190720170000 000000+000 An important thing to note is you need to use ToUniversalTime() when using [System Management ManagementDateTimeConverter] otherwise you get offset times against your input
|
|
|