|
- 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
- rest - 400 BAD request HTTP error code meaning? - Stack Overflow
I have a JSON request which I'm posting to a HTTP URL Should this be treated as 400 where requestedResource field exists but "Roman" is an invalid value for this field? [{requestedResource:"Ro
- 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
- 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
- typescript - Could not find a declaration file for module module-name . . .
I read how TypeScript module resolution works I have the following repository: @ts-stack di After compiling the directory structure is as follows: ├── dist │ ├── annotations d ts │ ├──
- How to create a GUID UUID in Python - Stack Overflow
If you're not going to bother using it in any UUID contexts, you may as well just use random getrandbits(128) to_bytes(16, 'little') or (for crypto randomness) os urandom(16) and get a full 128 bits of random (UUIDv4 uses 6-7 bits on version info)
- cron - How do I schedule jobs in Jenkins? - Stack Overflow
I added a new job in Jenkins, which I want to schedule periodically From Configure job, I am checking the "Build Periodically" checkbox and in the Schedule text field added the expression: 15 1
|
|
|