About 15 results
Open links in new tab
  1. How to get a list of images on docker registry v2 - Stack Overflow

    Jul 6, 2015 · 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 …

  2. 400 BAD request HTTP error code meaning? - Stack Overflow

    Oct 30, 2013 · 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.

  3. 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 …

  4. How can I list all tags for a Docker image on a remote registry?

    Apr 7, 2017 · 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.

  5. typescript - Could not find a declaration file for module 'module …

    Dec 23, 2016 · I read how TypeScript module resolution works. I have the following repository: @ts-stack/di. After compiling the directory structure is as follows: ├── dist │ ├── …

  6. How to create a GUID/UUID in Python - Stack Overflow

    Aug 6, 2022 · 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 …

  7. Git: How do I list only local branches? - Stack Overflow

    git branch -a shows both remote and local branches. git branch -r shows remote branches. Is there a way to list just the local branches?

  8. 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 …

  9. What is idempotency in HTTP methods? - Stack Overflow

    May 21, 2019 · Idenpotent methods (GET,OPTIONS) don't change anything at the server (other than possibly adding log entries). Non-idempotent (PUT,POST,DELETE) methods change the …

  10. docker - DockerHub: sha digest doesn't match - Stack Overflow

    Dec 24, 2019 · 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 …

Refresh